CSS tag 2004-01-23 - By Jacob Kjome
Back Quoting Luc Foisy <Luc.Foisy@(protected)>:
> > I am looking for a quick answer, I don't belong to any other list thats > appropriate, and we should be full of web developers :) > I appologize to the admins. > > Any, I was wondering if there was a css tag that would align my text > vertically. like in <TD VALIGN=top> > Yep,
vertical-align: top;
Note that this only works in table cells (<td> and <th>) or inline elements where something on the line makes that line tall such as a taller-than-the-font-size image. It is not inherited either, so you can just set it on a <div> and expect it to propogate to inline tags inside that <div>. Anyway, this should work fine for you since you are using a <td>.
Jake
> TD.productdisplayfieldname > { > color : Red; > font-size : 16px; > font-family : Arial, Helvetica, sans-serif; > font-style : normal; > font-weight : bold; > text-decoration : none; > text-align : right; > } > Anyone got a quick answer? > > -- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ > To unsubscribe, e-mail: tomcat-user-unsubscribe@(protected) > For additional commands, e-mail: tomcat-user-help@(protected)
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ To unsubscribe, e-mail: tomcat-user-unsubscribe@(protected) For additional commands, e-mail: tomcat-user-help@(protected)
|
|