View Single Post
  #2  
Old 08-24-2006, 12:59 PM
  Zaja's Avatar 
Zaja Zaja is offline
 

X-Adept
  
Join Date: Mar 2004
Location: The Universe is my home
Posts: 420
 

Default Re: CSS question / TD tags ?

Hi Jeremy,

there is no VALIGN in CSS, use the 'vertical-align' CSS property.

If you need to align something vertically in certain class just add 'vertical-align' property, like this:
Code:
.VertMenuTitle { padding: 2px; background: #FF8600; color: #330000; font-weight: bold; vertical-align:bottom; }

or apply the vertical-align property in table cell, like this:
Code:
<td style="vertical-align:bottom;">

Keep in mind that vertical-align property cannot be used to align something vertically in div's.
__________________
_/ _/ _/ _/ _/ _/ _/ _/ _/

7dana.com
Reply With Quote