Vertically Align Text With Css

Posted By Weston Ganger

<p>Searching for a method to center text in a div or whatever with just css which also works in IE5, 6, & 7</p>
<p>Set the line-height equal to div height</p>
<p>Example:</p>

.whatever{
  width:100px;
  height:100px;
  line-height:100px;
}

Article Topic:Software Development - HTML / CSS

Date:April 29, 2014