Is background-color:none valid CSS?

前端 未结 7 2409
独厮守ぢ
独厮守ぢ 2020-11-28 19:04

Can anyone tell me if the following CSS is valid?

.class {
    background-color:none;
}
7条回答
  •  庸人自扰
    2020-11-28 19:35

    .class {
        background-color:none;
    }
    

    This is not a valid property. W3C validator will display following error:

    Value Error : background-color none is not a background-color value : none

    transparent may have been selected as better term instead of 0 or none values during the development of specification of CSS.

提交回复
热议问题