当前位置: 首页 > Web前端 > CSS

css样式简写

时间:2023-03-30 14:04:46 CSS

css样式简写background简写公式:background:[background-color][background-image]background-repeat[background-position]/background-size[background-clip];在css2.1的后台简写公式只有五个属性:color、image、repeat、attachment、position。css3中加入了size、origin、clip,其中的'/'表示支持'/'写法的浏览器可以继续写background-size属性example.example{background:redurl('../back.png')no-repeatscrollcentercenter/50%content-boxcontent-box;}fontshorthand速记公式font:[font-style][font-weight][font-size]/[line-height][font-family]"/"类似backgroundexample.myFont{font:normalbold20px/24px"MicrosoftYaHei";}bordershorthand速记公式border:[border-width][border-style][border-color]示例。box{border:1pxsolid#000000;}