
July 9th, 2003, 03:54 PM
|
 |
mod_dev_shed
|
|
Join Date: Sep 2002
Location: Atlanta, GA
|
|
On a related note, if you specify the background-color of an element and want the text color to be that of the entire site, use something like this:
Code:
body
{
background-color: white;
color: black;
}
table
{
background-color: yellow;
color: inherit;
}
|