背景 background

综合设置: background:#000 url(tu.png) no-repeat fixed 5px 10px; 顺序设置: background-color background-image background-repeat background-attachment background-position 注:可以省略,只填写部分参数 背景颜色: background-color:#000; 参数说明: #000 指定十六进制颜色 rgb(255,255,255) 指定RGB颜色 transparent 透明 inherit 父标签继承 背景图像: background-image:url(tu.png); 取背景图像xy位置图像 background-position:5px 10px; 参数说明:x=5px, y=10px 背景图像是否随页面滚动: background-attachment: fixed; 参数说明: scroll 默认、随页面滚动 fixed 不随页面滚动 inherit 从标签继承 背景图像重复方式: background-repeat: 参数说明: repeat 默认、向水平垂直方向重复 repeat-x 向水平方向重复 repeat-y 向垂直方向重复 no-repeat 不重复 inherit 从标签继承