CSS2 基础
background 背景
css 背景
- background-color 元素的背景颜色
- background-image 元素的背景图像
- background-repeat 页面的水平或者垂直方向平铺
- background-position 设置定位与不平铺
- background-attachment 设置定位与不平铺
body
{
background-image:url('img_tree.png');
background-repeat:no-repeat;
background-position:right top;
}
背景简写 (简写顺序)
- background-color
- background-image
- background-repeat
- background-attachment
- background-position
body {background:#ffffff url('img_tree.png') no-repeat right top;}
文本格式
文本颜色
- color: #ccc
- 十六进制 如: #FF0000
- RGB值 如: RGB(255,0,0)
- 代号 如: red