我习惯用速记写出我的背景属性......
background: #444 url(hero.jpg) no-repeat center right;
无论如何,我可以将background-size属性合并到我的速记中吗?一些新的css3背景属性怎么样?它们是否可以用速记书写?
答案 0 :(得分:1)
是。完整的CSS3语法是:
background: color position/size repeat origin clip attachment image|initial|inherit;
注意:如果速记声明中的某个属性是background-size属性,则必须使用/(斜杠)将其与background-postion属性分开,例如:背景:网址(smiley.gif)10px 20px / 50px 50px;将产生背景图像,位于左侧10个像素,距离顶部20个像素,图像大小为50像素宽,50像素高。