欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

css列表滑动防止被底部遮住和适配屏幕长一点的机型处理

程序员文章站 2022-03-07 09:13:30
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;
}
}