Forum Moderators: not2easy
i have a table, where all but one cell have a black border and a background color:
.navBox * td {border: thin solid #000000;background-color: #F5DEB3;}
this works fine, the table is given the class 'navBox' and the cells show the style as expected.
one cell however doesn't need a background color or border:
.navBox * td.nb{border: none;background-color:none;}
so this td is given a class 'nb'
this removes the border but the background color is not going!
is background-color:none; invalid? TopStyle seems to think its ok
there is only a skeleton css sheet at the moment so no other conflicts