View Single Post
04-22-2006, 02:53 AM
#2
Cole is offline Cole
Status: I love this place
Join date: Apr 2005
Location:
Expertise:
Software:
 
Posts: 721
iTrader: 0 / 0%
 

Cole is on a distinguished road

  Old

The vertical-align property in css is a bit redundant. That property will only align inline elements and not box elements like a div.

You could change the div element to be emulated as a table level element:
Code:
display: table-cell; vertical-align: middle;