CSS sets Overflow to hide the scroll bar while allowing scrolling

CSS sets Overflow to hide the scroll bar while allowing scrolling

CSS sets Overflow to hide the scroll bar while allowing scrolling. The specific code is as follows:

.scroll-list ul{
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0.1rem;
    margin-bottom: -.2rem;
    overflow: -moz-scrollbars-none;
    overflow: -moz-scrollbars-none;
}
.scroll-list ul::-webkit-scrollbar{
    display: none;
}

Summarize

The above is the CSS setting Overflow that I introduced to you to achieve hiding the scroll bar while allowing scrolling. 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!

<<:  Tips for designing photo preview navigation on web pages

>>:  HTML tag dl dt dd usage instructions

Recommend

mysql 5.7.20 win64 installation and configuration method

mysql-5.7.20-winx64.zipInstallation package witho...

HTML+CSS merge table border sample code

When we add borders to table and td tags, double ...

mysql5.7 installation and configuration tutorial under Centos7.3

This article shares the MySQL 5.7 installation an...

Talk about nextTick in Vue

When the data changes, the DOM view is not update...

Vue.js implements music player

This article shares the specific code of Vue.js t...

MySQL 5.7.17 winx64 installation and configuration graphic tutorial

I summarized the previous notes on installing MyS...

Analysis and solution of abnormal problem of loading jar in tomcat

Description of the phenomenon: The project uses s...

Common rule priority issues of Nginx location

Table of contents 1. Location / Matching 2. Locat...

JavaScript custom plug-in to implement tab switching function

This article shares the specific code of JavaScri...

CentOS 7 builds hadoop 2.10 high availability (HA)

This article introduces how to build a high-avail...