css学习-background背景缩写

背景缩写用于针对背景控制的相关属性进行缩写,其语法格式如下:
background:background-color | background-image | background-repeat  background-attachment | background-position

这个没什么好讲的,请看实例:
#content {
         background-color:#EDEDED;
         background-image:url(image/bg.gif);
         background-repeat:no-repeat;
         background-position:30% 20px;
}
缩写后的代码如下:
#content {
        background:#EDEDED url(image/bg.gif) no-repeat 30% 20px;
}

你可能感兴趣的:(CSS)