1 Sept 2015

How to do Vertical Centering Text with Line-Height

Vertical Centering Text with Line-Height

If you want to vertically center text within a containing block who’s height is fixed, simply set the line-height of the text to be the same as the height of the containing block
The HTML:
<div id="container">some text here</div>
The CSS:
div#container {height: 35px; line-height: 35px}
Share:

0 comments:

Post a Comment