CSS list sliding to prevent being covered by the bottom and adapt to the longer screen model processing

CSS list sliding to prevent being covered by the bottom and adapt to the longer screen model processing

1. When the mobile terminal processes the list sliding, WeChat has a built-in return page button at the bottom, which is often blocked. If the screen is longer, the bottom will be much shorter. The following method can solve this problem.

.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;
    }
  }

Summarize

The above is what I introduced to you about how to prevent the CSS list sliding from being covered by the bottom and adapt to models with longer screens. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  Baidu Input Method opens API, claims it can be ported and used at will

>>:  Solution to the problem that Centos8 cannot install docker

Recommend

HTML Nine-grid Layout Implementation Method

Diversifying website layouts is our front-end spe...

Detailed usage of docker-maven-plugin

Table of contents Docker-Maven-Plugin Maven plugi...

Detailed explanation of the use of React list bar and shopping cart components

This article example shares the specific code of ...

Native js canvas to achieve a simple snake

This article shares the specific code of js canva...

Example of implementing element table row and column dragging

The element ui table does not have a built-in dra...

How to compile the Linux kernel

1. Download the required kernel version 2. Upload...

Summary of Linux system user management commands

User and Group Management 1. Basic concepts of us...

JavaScript uses setTimeout to achieve countdown effect

In order to enhance the ability to write JavaScri...

Detailed tutorial on running multiple Springboot with Docker

Docker runs multiple Springboot First: Port mappi...

Introduction to the three essential logs for MySQL database interviews

Table of contents 1. redo log (transaction log of...

Example code for implementing a pure CSS pop-up menu using transform

Preface When making a top menu, you will be requi...

Vue implementation example using Google Recaptcha verification

In our recent project, we need to use Google robo...

Detailed explanation of the use of Linux time command

1. Command Introduction time is used to count the...