“CSS 2.1 参考手册/background-repeat”的版本间的差异

来自Blueidea
跳转至: 导航搜索
(新页面: background-repeat ==定义== background-repeat属性定义背景图片是否重复显示(平铺)和如何重复显示。 ==案例== <source lang="css"> body { background: white url('...)
 
案例: 修改图片位置
第13行: 第13行:
  
 
上面的例子在网页浏览器里面可能显示成:
 
上面的例子在网页浏览器里面可能显示成:
 +
 
[[Image:css Background-repeat.gif]]
 
[[Image:css Background-repeat.gif]]
 +
 
==特性==
 
==特性==
 
===可能的值===
 
===可能的值===

2007-09-04T10:57:36的版本

background-repeat

定义

background-repeat属性定义背景图片是否重复显示(平铺)和如何重复显示。

案例

body {
background: white url('/images/sun.gif');
background-repeat: repeat-y;
background-position: top center;
}

上面的例子在网页浏览器里面可能显示成:

css Background-repeat.gif

特性

可能的值

repeat

图片在水平方向和垂直方向都重复(平铺)。

repeat-x

图片只在水平方向重复。

repeat-y

图片只在垂直方向重复。

no-repeat

图片不重复,即只有一张图片显示。

inherit

Use the same computed value as the parent element for this property.

默认值

repeat

适用于

所有元素

继承

另见