1.4 CSS 背景

背景颜色

p {
    background-color: yellow;
}

背景图像

body {
    background: #ffffff url("icon.png") repeat scroll left top;
}

// 属性依次为:
background-color        颜色
background-image        图片
background-repeat   是否重复,repeat,repeat-x,repeat-y,no-repeat,inherit
background-attachment   是否固定,scroll,fixed,inherit
background-position     图片起始定位(x y)2 个值