Jump to content

[SOLVED] colour coded tables


otuatail

Recommended Posts

I am trying to create a colour coded table newsboard similar to these with pinnable at the top. I cant get the background colur to change but the font is changing ok.

 

<tr id="des">  // works for the font but not the background

 

The CSS is this

 

#des
{
    FONT-WEIGHT: bold;
    FONT-SIZE: 16pt;
    COLOR: Orange;
    FONT-FAMILY: 'Monotype Corsiva';
    bgcolor="#ffffcc";
}

 

The font changes to orange only.  Desmond.

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/77352-solved-colour-coded-tables/
Share on other sites

oh my bad didn't notice it...

 

bgcolor is NOT a valid css attribute...

 

tr#des td

{

    FONT-WEIGHT: bold;

    FONT-SIZE: 16pt;

    COLOR: Orange;

    FONT-FAMILY: "Monotype Corsiva";

    background= #ffffcc;

}

 

you could even use the short cut hex code #ffc;

 

you don't need quotes arount css values UNLESS its a fint name with a space in it.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.