css列表滑动防止被底部遮住和适配屏幕长一点的机型处理
程序员文章站
2022-06-17 08:27:17
1、移动端处理列表滑动的时候,微信底下有自带的返回页面按钮,经常会被遮住,遇到屏幕长一点的,下面会短一大截,以下用此方法可以解决。.container{ position:relative; background:url(../img/chooseBg.jpg) no-repeat center c ......
1、移动端处理列表滑动的时候,微信底下有自带的返回页面按钮,经常会被遮住,遇到屏幕长一点的,下面会短一大截,以下用此方法可以解决。
.container{
position:relative;
background:url(../img/choosebg.jpg) no-repeat center center;
background-size:cover;
width:100%;
height:100%;
//.listconheight{
// height:9rem;
// overflow:auto;
//}
.listconheight {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding-top: 1.3rem;
box-sizing: border-box;
ul {
width:6.78rem;
height: 100%;
margin:0 auto;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
}
上一篇: Ubuntu 18.04.4安装mysql的过程详解 亲测可用
下一篇: 架构杂谈《一》