css怎么设置图片平铺方式?
background-repeat属性是用来设置背景图像如何平铺的。默认地,背景图像在水平和垂直方向上重复。
属性值:
repeat:即默认方式,完全平铺背景;
no-repeat:在X及Y轴方向均不平铺;
repeat-x:横向平铺背景;
repeat-y:纵向平铺背景。
提示:背景图像的位置是根据 background-position 属性设置的。如果未规定 background-position 属性,图像会被放置在元素的左上角。
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div{
margin: 20px;
}
.content1 {
border: 1px solid #000fff;
height: 200px;
background-image: url(../2018.12.15/2.jpg);
background-repeat: repeat;
}
.content2 {
border: 1px solid #000fff;
height: 200px;
background-image: url(../2018.12.15/2.jpg);
background-repeat: repeat-x;
}
.content3 {
border: 1px solid #000fff;
height: 200px;
background-image: url(../2018.12.15/2.jpg);
background-repeat: repeat-y;
}
.content4 {
border: 1px solid #000fff;
height: 200px;
background-image: url(../2018.12.15/2.jpg);
background-repeat: no-repeat;
}
</style>
<div class="content1"></div>
<div class="content2"></div>
<div class="content3"></div>
<div class="content4"></div>
</body>
</html>本文内容仅供个人学习/研究/参考使用,不构成任何决策建议或专业指导。分享/转载时请标明原文来源,同时请勿将内容用于商业售卖、虚假宣传等非学习用途哦~感谢您的理解与支持!