Hi, I'm trying to validate my css file to CSS2. I get a bunch of warnings along the lines of:
# Line : 43 Level : 1 You have no background-color with your color : a:link
where A:LINK is defined like this:
a:link { color:#000000; }
I would like A:LINK to inherit the background color of BODY. How do I do
this without getting the above warning? Naively, I tried:
background-color: body.style.background-color
But it has no effect and doesn't validate.
Thanks
