You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
radionanet
Всем здравствуйте
После меню мне нужно реализовать border-bottom через after, как этого добиться.
Моя реализация такова
ul:after {
content: "";
width: 100%;
border-bottom: 10px solid #383838;
position: absolute;
left: 0;
/* Всё вроде нормально, но сам бордер становиться поверх этого меню, а мне надо под*/
}
Без absolute
ul:after {
content: "";
width: 100%;
border-bottom: 10px solid #383838;
owerflow: hidden;
/* Всё вроде нормально, он под меню, но растягивается только под ширину этого меню*/
}
Edited by radionanetLink to comment
Share on other sites
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.