标签:bsp htm 垂直 repeat 显示 图像 nbsp school 色值
http://www.runoob.com/css/css-background.html
http://www.w3school.com.cn/css/css_background.asp
CSS 背景属性用于定义HTML元素的背景。
CSS 属性定义背景效果:
background-color 属性定义了元素的背景颜色.
CSS中,颜色值通常以以下方式定义:
body {background-color:#b0c4de;} h1 {background-color:#6495ed;} p {background-color:#e0ffff;} div {background-color:#b0c4de;}
background-image 属性描述了元素的背景图像.
默认情况下,背景图像进行平铺重复显示,以覆盖整个元素实体.
body {background-image:url(‘paper.gif‘);}
默认情况下 background-image 属性会在页面的水平或者垂直方向平铺。
background-repeat:repeat-x; //只在横轴方向重复
background-repeat:repeat-y; //只在纵轴方向重复
background-repeat:repeat; //默认的应该是这个,横轴和纵轴方向都进行重复
background-repeat:no-repeat; //不重复
background-repeat:space; //横轴和纵轴方向都重复,但是图片重复的时候,会加空格。最后形成网状的效果
background-repeat:no-repeat;
background-position:right top;
标签:bsp htm 垂直 repeat 显示 图像 nbsp school 色值
原文地址:http://www.cnblogs.com/chucklu/p/6938129.html