CSS学习笔记(四)

背景
background-color:
背景为透明(transparent)、背景颜色与字体color类似
例:
<p style="background-color:transparent"></p>
background-image:url()
例:
p{background-image:url('http://test/logo.gif')}
url中路径也可用双引号引起来
background-repeat:背景图重复
no-repeat:不重复
repeat:重复平铺图像
repeat-x:水平方向上重复平铺图像
repeat-y:垂直方向上重复平铺图像
background-attachment:背景图是否跟着内容的移动而移动fixed:固定背景图像
scroll:图像跟着内容的移动而移动
background-position:背景图像的位置
水平位置:left(背景图距元素左边距)、center、right
垂直位置:top、center、bottom

背景属性的简化:backgroundp{background:#0000cc url("1.gif") no-repeat bottom right}





你可能感兴趣的:(css)