You can center text vertically by using absolute positioning on the child element and setting the top property to 50%. You might have to adjust the margin-top attribute to get the text exactly in the center.
Example
div#header {
position: relative;
height: 200px;
}
div#header span {
position: absolute;
top: 50%;
margin-top: -10px;
}
<div id="header">
<span>My text</span>
</div>
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment