ok...lets say one of the cells in my html table has the class: cell4
and the css definition is:
.cell4 {
background: #FFFFFF;
padding: 5px;
font: 11px Arial, Helvetica, sans-serif;
}
Lets say I want all of the <b> tags in this cell to be navy blue, 12 pt...
How can I set the b tag to only affect this cell?
If I use:
b {
font: bold 12px Arial, Helvetica, sans-serif;
color: #000066;
}
It works, but all of the bold tags in the other cells on the web page turn blue too
any ideas?











Bookmarks