CSS 背景属性

来源:百度文库 编辑:神马文学网 时间:2024/06/06 06:58:26
CSS背景属性
CSS背景元素允许你控制元素的背景颜色,将图像设置为背景,垂直或水平低重复背景图像,并且在网页上定位背景图像。
浏览器支持:IE: Internet Explorer, F: Firefox, N: Netscape。
W3C:“W3C”列的数字显示出属性背景由哪个CSS标准定义(CSS1还是CSS2)。
属性 描述 值 IE F N W3C
background 简写属性,作用是将背景属性设置在一个声明中。 background-color
background-image
background-repeat
background-attachment
background-position
4 1 6 1
background-attachment 设置是否背景图像是固定的或虽页面其余部分滚动。 scroll
fixed
4 1 6 1
background-color 设置元素的背景颜色。 color-rgb
color-hex
color-name
transparent
4 1 4 1
background-image 将图像设置为背景。 url
none
4 1 4 1
background-position 设置背景图像的起始位置。 top left
top center
top right
center left
center center
center right
bottom left
bottom center
bottom right
x-% y-%
x-pos y-pos
4 1 6 1
background-repeat 设置背景图像是否及如何重复。 repeat
repeat-x
repeat-y
no-repea