当前位置: 首页 > 网络学院 > 网页制作基础教程 > CSS > CSS background-repeat属性
The background-repeat property sets if/how a background image will be repeated.
当背景图片要做重复显示,background-repeat 属性可以设置它是否应该重复显示或是应该怎样重复显示
继承性: 无
body |
值 | 描述 |
---|---|
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 背景图片不重复显示,只显示一次 |