|  | Posted by dorayme on 11/03/07 23:26 
In article <JbCdnTiKFbQwbrHanZ2dnUVZ_oesnZ2d@comcast.com>,"bbxrider" <bxtrap01@job1data.com> wrote:
 
 > i have this css class
 > .tble1, .tble1 TD, .tble TH
 > {
 > font-family:verdana;
 > font-size:10pt;
 > color:orange;
 > }
 > and invoke it in  a table
 > <table cellspacing="1" cellpadding="15" class="tble1">
 >
 > i get the font style and size ok in the td's, but color is always white
 >
 > it needs to be done differently?
 > bob
 
 
 Try this instead:
 
 ..tble1  {color: orange; background: white;}
 
 or
 
 table.tble1  {color: orange; background: white;}
 
 Your comma separated shorthand constructions are wrong.
 
 --
 dorayme
  Navigation: [Reply to this message] |