第09章 背景样式
背景样式简介
在CSS中,定义"背景颜色"使用的是"background-color"属性,而定义背景图片则比较复杂。
背景颜色
background-color:red|green|blue|grey等
背景图片样式
background-image:url(图片路径);
背景图片重复
background-repeat:repeat|repeat-x|repeat-y|no-repeat
背景图片位置
background-position:像素值/关键字;
background-position:水平距离 垂直距离;
背景图片固定
background-attachment:scroll|fixed;