- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - background-repeat 属性
CSS background-repeat 属性控制图像在背景上的重复。图像可以沿水平轴和垂直轴重复,也可以不重复。
语法
background-repeat: repeat | repeat-x | repeat-y | no-repeat | space | round | initial | inherit;
属性值
值 | 描述 |
---|---|
repeat | 背景图像在水平和垂直方向上重复。默认值。 |
repeat-x | 背景图像水平重复。 |
repeat-y | 背景图像垂直重复。 |
no repeat | 背景图像不会重复。 |
space | 在不剪裁的情况下,尽可能多地重复图像。第一个和最后一个图像固定在元素的任一侧,空白区域在图像之间均匀分布。 |
round | 背景图像重复并按压或固定以填充空格。 |
initial | 将属性设置为其初始值。 |
inherit | 将继承父元素的属性。 |
CSS 背景重复属性的示例
下面描述了具有不同值的背景重复属性的示例。
图像的重复
为了让背景图像在垂直和水平方向上重复,我们使用重复值。这在下面的示例中显示。
<!DOCTYPE html>
<html>
<head>
<style>
.repeat {
background-image: url('/css/images/tutimg.png');
background-repeat: repeat;
width: 800px;
height: 400px;
position: relative;
}
</style>
</head>
<body>
<h2>CSS background-repeat property</h2>
<div class="repeat"></div>
</body>
</html>
图像的水平重复
为了让背景图像水平重复两个,我们使用 repeat-x 值。这在下面的示例中显示。
<!DOCTYPE html>
<html>
<head>
<style>
.repeat-x {
background-image: url('/css/images/tutimg.png');
background-repeat: repeat-x;
width: 800px;
height: 300px;
position: relative;
}
</style>
</head>
<body>
<h2>CSS background-repeat property</h2>
<div class="repeat-x"></div>
</body>
</html>
图像的垂直重复
为了让背景图像垂直重复,我们使用 repeat-y 值。这在下面的示例中显示。
<!DOCTYPE html>
<html>
<head>
<style>
.repeat-y {
background-image: url('/css/images/tutimg.png');
background-repeat: repeat-y;
width: 800px;
height: 300px;
position: relative;
}
</style>
</head>
<body>
<h2>CSS background-repeat property</h2>
<div class="repeat-y"></div>
</body>
</html>
防止图像重复
为了防止背景图像重复,我们使用不重复值。这在下面的示例中显示。
<!DOCTYPE html>
<html>
<head>
<style>
.no-repeat {
background-image: url('/css/images/tutimg.png');
background-repeat: no-repeat;
width: 800px;
height: 300px;
position: relative;
}
</style>
</head>
<body>
<h2>CSS background-repeat property</h2>
<div class="no-repeat"></div>
</body>
</html>
空间图像重复
为了使图像在空间之间均匀分布的情况下多次重复,我们使用空间值。这在下面的示例中显示。
<!DOCTYPE html>
<html>
<head>
<style>
.space {
background-image: url('/css/images/tutimg.png');
background-repeat: space;
width: 800px;
height: 300px;
position: relative;
}
</style>
</head>
<body>
<h2>CSS background-repeat property</h2>
<div class="space"></div>
</body>
</html>
拉伸以填充空间
为了使图像重复多次并在它们之间留出很小的空间,我们使用四舍五入值。这在下面的示例中显示。
<!DOCTYPE html>
<html>
<head>
<style>
.round {
background-image: url('/css/images/tutimg.png');
background-repeat: round;
width: 800px;
height: 300px;
position: relative;
}
</style>
</head>
<body>
<h2>CSS background-repeat property</h2>
<div class="round"></div>
</body>
</html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
background-repeat | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |