Question

This is my CSS Code. W3C CSS validator saying the above error.

Please provide suggestions

span.selected {
    width:70px;
    text-indent:10px;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
    background:#7a7a7a;
    overflow:hidden;
    font-family: Tahoma;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}
Était-ce utile?

La solution

I've done a manual check using http://jigsaw.w3.org/css-validator/validator - which gave back

Congratulations! No Error Found.

Try using background-color instead.

Please refer to this SO question: What is the difference between background and background-color

Docs

Autres conseils

if you want to just set the color, use Background-color instead;

background-color: #7a7a7a;
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top