我需要垂直居中li
的內容,所以我做的是lineheight
,它的工作原理是,但問題是,當我有多條線時,這種技術不再有效,我can't modify
html
因爲它是這是教授給出的一個約束。所以我真的用盡瞭解決方案。垂直中心多條線
這裏是HTML
而且Css
li
{
\t list-style-type:none;
\t border-bottom: 1px solid #e0e0e0;
\t height: 55px;
\t display: inline-block;
vertical-align: middle;
width: 100%;
line-height: 55px;
}
ul
{
\t list-style : none;
\t
}
<ul>
\t <li>
The 2015–16 UEFA Champions League was the 61st season of Europe's premier club football tournament organised by UEFA, and the 24th season since it was renamed from the European Champion Clubs' Cup to the UEFA Champions League
</li>
</ul>
垂直對齊方式? –
是垂直對齊 –
您必須使用其他4或5種技術之一來垂直居中您的內容。他們都很好地覆蓋了許多關於SO的問題。 – Alohci