赞
踩
https://blog.csdn.net/yujin0213/article/details/79093480
需求:父级边框固定,里面的内容滚动
由于是图片边框,于是我把边框的上下部分单独切图,中间重复部分平铺
想要的效果图:
一开始的写法:
html:
<div class="paradise-wrap">
<div class="paradise"></div>
</div>
1
2
3
css:
.paradise-wrap{
position: relative;
width: 640px;
background: url("images/paradise/paradise-middle.png") repeat-y top;
background-size: 640px 24px;
padding: 0 40px;
box-sizing: border-box;
height: 800px;
overflow: scroll;
}
.paradise-wrap:before{
position: absolute;
content: '';
width: 640px;
height: 40px;
background: url("images/paradise/paradise-top.png") no-repeat center;
left: 0;
top: -40px;
}
.paradise-wrap:after{
position: absolute;
content: '';
width: 640px;
height: 40px;
background: url("images/paradise/paradise-bottom.png") no-repeat center;
left: 0;
bottom: -40px;
}
.paradise{
width: 532px;
height: 1238px;
background: url("images/paradise/paradise-pics.png") no-repeat center;
background-size: 532px 1238px;
margin: 0 auto;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
实际效果图:
上面的边框一开始就被隐藏了,而滚动里面的内容,发现下边框会随着内容一起滚动
原因是,paradise-wrap的div设置了position:relative,此时before、after伪元素定位参照对象为paradise-wrap,而其overflow属性不为visible时,会对超出尺寸进行裁剪(于是作为子元素的before部分就被裁剪了),即使before、after是绝对定位,但是也是相对于父级绝对定位,所以父级一滚动,绝对定位的after部分也会随之滚动
笔者一开始以为是after、before伪元素的原因,其实伪元素写法跟正常的div写法一样,都是作为paradise-wrap的子元素,只不过伪元素不在正常的DOM树中,把上下边框用绝对定位的div实现也同样会出现这种问题
解决方法:
在需要滚动的区域外层,再套一层div,将原来写在paradise-wrap上的height、overflow: scroll属性加在这个div上
html:
<div class="paradise-wrap">
<div class="paradise-content">
<div class="paradise">
</div>
</div>
</div>
1
2
3
4
5
6
css:
.paradise-wrap{
position: relative;
width: 640px;
background: url("images/paradise/paradise-middle.png") repeat-y top;
background-size: 640px 24px;
padding: 0 40px;
box-sizing: border-box;
}
.paradise-content{
height: 800px;
overflow: scroll;
}
1
2
3
4
5
6
7
8
9
10
11
12
这样的话,不会影响外面的边框显示,边框固定,而里面的内容也能正常滚动,可以实现一开始希望达到的效果
————————————————
版权声明:本文为CSDN博主「yujin0213」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/yujin0213/article/details/79093480
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。