背景Background的CSS语法
背景的属性如下:
background-color: #FFCCFF;
background-image: url(/images/2007-6.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center bottom;
该CSS代码可缩写为:
background: #FCF url(/images/2007-6.jpg) no-repeat fixed center bottom;
即 背景:背景颜色、背景图像、背景重复、背景附件、背景水平位置、背景垂直位置
其中背景颜色“#FFCCFF”还可以简写为“#FCF”,这是针对16进制的色彩值,如果每两位(RRGGBB)的值相同,可以缩写一半(RGB)。同时,背景图像不需要加双引号。
background-color: #FFCCFF;
background-image: url(/images/2007-6.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center bottom;
该CSS代码可缩写为:
background: #FCF url(/images/2007-6.jpg) no-repeat fixed center bottom;
即 背景:背景颜色、背景图像、背景重复、背景附件、背景水平位置、背景垂直位置
其中背景颜色“#FFCCFF”还可以简写为“#FCF”,这是针对16进制的色彩值,如果每两位(RRGGBB)的值相同,可以缩写一半(RGB)。同时,背景图像不需要加双引号。
| 感动 | 同情 | 无聊 | 愤怒 | 搞笑 | 难过 | 高兴 | 路过 |
相关文章
-
没有相关内容
