前端 - CSS 如何设置自动滚动定位的“安全”间距?_个人文章 - SegmentFault 思否
欢迎关注我的公众号:前端侦探介绍两个和滚动定位相关的 CSS 属性:scroll-padding和 scroll-margin在平时开发中,经常会碰到需要快速定位的问题,比如常见的锚点定位<l
顺晟科技
2021-08-27 11:53:08
178
background-repeat属性是用来设置背景图像如何平铺的。默认地,背景图像在水平和垂直方向上重复。
属性值:
repeat:即默认方式,完全平铺背景;
no-repeat:在X及Y轴方向均不平铺;
repeat-x:横向平铺背景;
repeat-y:纵向平铺背景。
提示:背景图像的位置是根据 background-position 属性设置的。如果未规定 background-position 属性,图像会被放置在元素的左上角。
css背景图片平铺之完全平铺背景的代码:
<!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>
广州vi设计公司 http://www.maiqicn.com 我的007办公资源网 https://www.wode007.com
17
2022-11
19
2022-10
19
2022-10
12
2022-10
15
2022-09
15
2022-09