-1

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;
}
Ex-iT
  • 1,479
  • 2
  • 12
  • 20
Huzoor
  • 15
  • 4

2 Answers2

1

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

Community
  • 1
  • 1
ʰᵈˑ
  • 11,279
  • 3
  • 26
  • 49
-1

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

background-color: #7a7a7a;
mesut
  • 2,099
  • 3
  • 23
  • 35