背景样式

「背景颜色」background-color: 设置背景颜色。

 

「背景图像」background-image: 设置网页背景图像。

 background-image:url(/images/xx.gif) --默认情况下,双向平铺

 

「背景重复」background-repeat: 控制背景图像的平铺方式

    有不重复: no-repeat

    重复:repeat, 沿水平、垂直方向平铺

    横向重复: repeat-X, 图像沿水平方向平铺

    纵向重复: repeat-Y, 沿图像垂直方向平铺

 

「背景附件」background-attachment: 用于控制背景图像是否会随页面的滚动而一起滚动。

    固定: fixd, 文字滚动时,背景图像保持固定

    滚动: scroll, 背景图像随文字内容一起滚动 

 

「水平位置」/「垂直位置」background-position: 确定背景图像的水平、垂直位置。

    左对齐: left

    右对齐: right

    顶部: top

    底部: bottom

    居中: center

    值: 自定义背景图像的起点位置,可使用户对背景图像的位置做出更精确的控制

你可能感兴趣的:(样式)