Здравствуйте! Столкнулся с такой проблемой: vertical-align отказывается работать - при установке значения "middle" выравнивает по верхнему краю, не могу понять почему... Возможно, сталкивался кто-то?
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
Torawhite
Здравствуйте! Столкнулся с такой проблемой: vertical-align отказывается работать - при установке значения "middle" выравнивает по верхнему краю, не могу понять почему... Возможно, сталкивался кто-то?
HTML:
<div id="menu">
<a title="Главная страница" href="http://www.torawhite.ru/" target="_self" id="home"></a>
<a href="#" target="_self" id="magazine">ЖУРНАЛ</a>
<a href="#" target="_self" id="market">МАРКЕТ</a>
<a href="#" target="_self" id="more">ЕЩЕ</a>
</div>
CSS:
#menu {
Edited by Torawhiteposition: absolute;
height: 30px;
width: 268px;
bottom: 5px;
left: 0px;
}
#menu a {
display: table-cell;
text-align: center;
vertical-align: middle;
background-size: contain;
border-right: 1px solid #FFFFFF;
cursor: pointer;
font: 14px ProximaNova-Reg, Verdana;
text-decoration: none;
color: #FFFFFF;
}
#menu a:hover, #menu .active_menu {
background-color: #BF1238;
background-size: contain;
}
#home {
position: absolute;
background: url(http://www.torawhite.ru/images/main.svg) no-repeat;
left: 0px;
width: 30px;
height: 30px;
}
#magazine {
position: absolute;
left: 31px;
width: 90px;
height: 30px
}
#market {
position: absolute;
left: 122px;
width: 84px;
height: 30px;
}
#more {
position: absolute;
left: 207px;
width: 60px;
height: 30px;
}
Link to comment
Share on other sites
4 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.