- 5,178
- Worcester, MA
- skip0110
Simple CSS issue:
Why is W3C giving me a warning on the following CSS?
Line : 2 (Level : 1) You have no background-color with your color : .submitLink
I did specify a background color, transparent!
Why is W3C giving me a warning on the following CSS?
Line : 2 (Level : 1) You have no background-color with your color : .submitLink
Code:
.submitLink {
color: #00f;
background-color: transparent;
text-decoration: underline;
border: none;
cursor: pointer;
}
I did specify a background color, transparent!