Jump to content
  • 0

Верстка кнопок одинаковой высоты


artwalek
 Share

Question

Необходимо сверстать 4 кнопки одинаковой высоты в столбик с помощью CSS3. Блок, в котором находятся кнопки ограничены по ширине.

Проблема возникает, когда текст кнопки не вмещается в заданную ширину и переносит текст.

Необходимо, чтобы надписи на кнопках были центрированы по вертикали (по горизонтали тоже) при заданной высоте, т. е. чтобы если текст кнопки переносится на другую строку, высота при этом не увеличивалась.

Делаю так. В моём примере высота увеличивается.


<ul>
<li><a href="" class="button"><span>Текст</span></a></li>
<li><a href="" class="button"><span>Текст</span></a></li>
<li><a href="" class="button"><span>Длинный текст</span></a></li>
<li><a href="" class="button"><span>Очень длинный текст</span></a></li>
</ul>


ul li {
display: inline;
}

.button {
text-decoration: none;
font-size: 1.2em;
display: inline-block;
text-align: center;
color: #424043;
text-shadow: 0px 1px 0px #ebe8e3;
box-shadow: 0 0 .3em rgba(0,0,0,0.4);
-moz-box-shadow: 0 0 .3em rgba(0,0,0,0.4);
-webkit-box-shadow: 0 0 .3em rgba(0,0,0,0.4);
width: 100%;

}

.button span {
display: block;
padding: 17% 0 17% 0;
vertical-align: middle;
}

Edited by artwalek
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy