Valign attribute using css

Munkeypop

New Member
Hey all,

Just wondering if anyone knows how to use the valign top text attribute using css. I'm having a bit of trouble getting it to work properly. :(

So far the closest i've got is

{
vertical-align: top;}
 

DLPerry

New Member
You might try the value 'text-top'

ex:
td { vertical-align: text-top }

'text-top' = Aligns the top of the element with the top of the parent element's font.
'top' = Aligns to the top of the tallest element on the line.
 
Top