Mobile Mobile pages only need to be compatible with Chrome and Safari, so you can use the custom scroll bar pseudo-class selector ::-webkit-scrollbar to hide the scroll bar. .container::-webkit-scrollbar { display: none; } PC The compatibility requirements of the PC side are relatively higher, so you can try another method. The general idea is to wrap a parent container div outside the content div, set overflow: hidden, set display-x: hidden; display-y: auto for the content div; finally, set the width of the parent container div to be smaller than the width of the content div or set the margin-right of the content div to a negative value. <div class="outer"> <div class="content"> <p>1111</p> <p>222</p> <p>333</p> <p>444</p> </div> </div> .outer { width: 300px; height: 300px; overflow: hidden; .content { width: 330px; /*margin-right: -15px;*/ height: 100%; overflow-x:hidden; overflow-y: auto; background: red; padding-top: 100px; p:not(:first-child) { margin-top: 100px; } } } Summarize The above is the pure CSS that I introduced to you to hide the scroll bar but still have the scrolling effect (mobile and PC). I hope it will be helpful to you! |
<<: Add ico mirror code to html (favicon.ico is placed in the root directory)
>>: Detailed tutorial on deploying Apollo custom environment with docker-compose
This article uses examples to describe how to use...
1. Basic Specifications (1) InnoDB storage engine...
Table of contents 1. Ordinary functions 2. Arrow ...
This article shares the use of js and jQuery tech...
With the emergence of docker, many services have ...
1. Introduction to MySQL permissions There are 4 ...
Index merging is an intelligent algorithm provide...
The effect is as follows: The code is as follows ...
It is very simple to build a go environment under...
Table of contents The node version does not corre...
Table of contents Summarize Summarize When the ar...
Preface As a basic data structure, arrays and obj...
Just add the following code to achieve it. Method ...
Table of contents 1. Introduction 2. Installation...
This article example shares the specific code of ...