문제

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;
}
도움이 되었습니까?

해결책

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

다른 팁

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

background-color: #7a7a7a;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top