网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: CSS :: CSS background-repeat属性

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

CSS background-repeat属性


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-28 浏览:2254 :: ::

The background-repeat property sets if/how a background image will be repeated.
当背景图片要做重复显示,background-repeat 属性可以设置它是否应该重复显示或是应该怎样重复显示

继承性:

实例

body

background-image: url(stars.gif);
background-repeat: repeat-x

可用值

描述
repeat The background image will be repeated vertically and horizontally
背景图片朝水平以及垂直方向重复显示
repeat-x The background image will be repeated horizontally
背景图片只朝水平方向重复显示
repeat-y The background image will be repeated vertically
背景图片只朝垂直方向重复显示
no-repeat The background-image will be displayed only once
背景图片不重复显示,只显示一次

评论 (0) All