Thursday, February 10, 2011

Vertically aligning with CSS - text and image


Vertically aligning with tables was a doddle. To make cell content line up in the middle of a cell you would use vertical-align: middle. This doesn't really work with a CSS layout. Say you have a navigation menu item whose height is assigned 2em and you insert this vertical align command into the CSS rule. It basically won't make a difference and the text will be pushed to the top of the box.



Hmmm... not the desired effect. The solution? Specify the line height to be the same as the height of the box itself in the CSS. In this instance, the box is 2em high, so we would insert line-height: 2em into the CSS rule and the text now floats in the middle of the box - perfect!

Example :
.div { width: 200px; height: 100px; display: table-cell; vertical-align: middle; text-align: center; }

div vertical-align middle not working in IE - It works in all browsers


No comments:

Post a Comment