“CSS 2.1 参考手册/background”的版本间的差异
来自Blueidea
(→可能的值) |
|||
(未显示同一用户的2个中间版本) | |||
第18行: | 第18行: | ||
===可能的值=== | ===可能的值=== | ||
*参考[[CSS 2.1 参考手册/background-color|background-color]], [[CSS 2.1 参考手册/background-image|background-image]], [[CSS 2.1 参考手册/background-repeat|background-repeat]], [[CSS 2.1 参考手册/background-attachment|background-attachment]] 和 [[CSS 2.1 参考手册/background-position|background-position]]的值。 | *参考[[CSS 2.1 参考手册/background-color|background-color]], [[CSS 2.1 参考手册/background-image|background-image]], [[CSS 2.1 参考手册/background-repeat|background-repeat]], [[CSS 2.1 参考手册/background-attachment|background-attachment]] 和 [[CSS 2.1 参考手册/background-position|background-position]]的值。 | ||
− | * | + | *inherit:使用和这个属性父元素的相同计算值。 |
+ | |||
===默认值=== | ===默认值=== | ||
详见[[CSS 2.1 参考手册/background-color|background-color]], [[CSS 2.1 参考手册/background-image|background-image]], [[CSS 2.1 参考手册/background-repeat|background-repeat]], [[CSS 2.1 参考手册/background-attachment|background-attachment]] 和 [[CSS 2.1 参考手册/background-position|background-position]]的属性值。 | 详见[[CSS 2.1 参考手册/background-color|background-color]], [[CSS 2.1 参考手册/background-image|background-image]], [[CSS 2.1 参考手册/background-repeat|background-repeat]], [[CSS 2.1 参考手册/background-attachment|background-attachment]] 和 [[CSS 2.1 参考手册/background-position|background-position]]的属性值。 | ||
第32行: | 第33行: | ||
*[[CSS 2.1 参考手册/background-attachment|background-attachment]] | *[[CSS 2.1 参考手册/background-attachment|background-attachment]] | ||
*[[CSS 2.1 参考手册/background-position|background-position]] | *[[CSS 2.1 参考手册/background-position|background-position]] | ||
− | [[ | + | *原文地址:http://xhtml.com/en/css/reference/background |
+ | [[category:CSS]] |
2007-11-16T22:07:37的最后版本
定义
background属性是设置background-color, background-image, background-repeat, background-attachment 和 background-position的缩写。
案例
body {background: white url('/images/sun.gif') repeat fixed top center}
上面的例子等价于:
body { background-color: white; background-image: url('/images/sun.gif'); background-repeat: repeat; background-attachment: fixed; background-position: top center; }
特性
可能的值
- 参考background-color, background-image, background-repeat, background-attachment 和 background-position的值。
- inherit:使用和这个属性父元素的相同计算值。
默认值
详见background-color, background-image, background-repeat, background-attachment 和 background-position的属性值。
适用于
所有元素。
继承
没有。