Originally posted by Synotic:
OK does anyone happen to know how I can get something similar to TD's valign property with CSS? I am using a DIV and vertical-align: middle; seems to be for objects within text, not for aligning the contents of an object vertically. Thanks
Vertical alignment is, at the present time, the great weakness of CSS. You're correct about what vertical-align does; it's for lining up inline objects by their vertical centers. To actually get something truly vertically aligned, you'd have to know its height, and the height of the containing element. This can be done with JavaScript, but other than that there's not much you can do.
It sucks, I know.