use*_*295 5 css background shorthand
我知道这background是速记属性 - 值0对所有属性有什么影响,它是有效的CSS吗?
selector {background:0;}
Run Code Online (Sandbox Code Playgroud)
background:0 是有效的CSS并被编译成:
background-image: initial;
background-position-x: 0px;
background-position-y: 50%;
background-size: initial;
background-repeat-x: initial;
background-repeat-y: initial;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: initial;
Run Code Online (Sandbox Code Playgroud)