1.1. 背景属性
背景色
p {background-color: gray;}
背景图像
body {background-image: url(/i/eg_bg_04.gif);}
背景重复
background-repeat: repeat-y;
说明:repeat-x 和 repeat-y 分别导致图像只在水平或垂直方向上重复,no-repeat 则不允许图像在任何方向上平铺。
背景定位
body { background-image:url('/i/eg_bg_03.gif'); background-repeat:no-repeat; background-position:center; }
说明: center top bottom right left
评论