手册
目录
收藏709
分享
阅读1270336
更新时间2025-08-27
使用CSS3,您可以将多个背景应用于元素。
CSS3提供了几个新属性来操纵元素的背景,例如背景剪切,多个背景以及调整背景大小的选项。
下一节将向您介绍CSS3的所有新背景功能,有关其他与背景相关的属性,请查看CSS背景教程。
该background-size属性可用于指定背景图像的大小。在CSS3之前,背景图片的大小由图片的实际大小决定。背景图像的大小可以使用像素或百分比值,以及关键字来指定auto,contain和cover。不允许使用负值。
.box {
width: 250px;
height: 150px;
background: url("images/sky.jpg") no-repeat;
background-size: contain;
border: 6px solid #333;
}提示:该background-size属性通常用于创建全尺寸背景图像,该背景图像将根据浏览器的视口或宽度的大小进行缩放。
background-clip属性可用于指定元素的背景是否延伸到边框中。该background-clip属性可以取三个值:border-box,padding-box,content-box。
.box {
width: 250px;
height: 150px;
padding: 10px;
border: 6px dashed #333;
background: orange;
background-clip: content-box;
}请参考CSS盒模型教程,以了解有关元素盒子的更多信息。
该background-origin属性可用于指定背景图像的定位区域。它可以采取相同的值background-clip属性:border-box,padding-box,content-box。
.box {
width: 250px;
height: 150px;
padding: 10px;
border: 6px dashed #333;
background: url("images/sky.jpg") no-repeat;
background-size: contain;
background-origin: content-box;
}注意:如果background-attachment属性的值被指定为“fixed”,那么background-origin属性将被忽略。
CSS3使您能够将多个背景添加到单个元素。背景相互层叠在一起。层数由background-imageor background速记属性中的逗号分隔值的数目确定。
.box {
width: 100%;
height: 500px;
background: url("images/birds.png") no-repeat center, url("images/clouds.png") no-repeat center, lightblue;
}背景的逗号分隔列表中的第一个值(即background-image“ birds.png”)将显示在顶部,而最后一个值(即“ lightblue”颜色)将显示在底部。只有最后一个背景可以包含background-color。
相关
视频
RELATED VIDEOS
科技资讯
1
2
3
4
5
6
7
8
9
精选课程
共5课时
17.2万人学习
共49课时
77.2万人学习
共29课时
61.9万人学习
共25课时
39.4万人学习
共43课时
71.1万人学习
共25课时
61.8万人学习
共22课时
23万人学习
共28课时
34万人学习
共89课时
125.5万人学习