Home >Web Front-end >CSS Tutorial >How to Vertically Center Text in Horizontal `` Elements?
Vertical Alignment of
To vertically align
<br>li {</p> <pre class="brush:php;toolbar:false">line-height: *height-of-li*;
}
Simply assign the height of the
Example:
<br>li {</p> <pre class="brush:php;toolbar:false">height: 50px; line-height: 50px;
}
This code aligns the content of each
The above is the detailed content of How to Vertically Center Text in Horizontal `` Elements?. For more information, please follow other related articles on the PHP Chinese website!