CSS adds scrolling to div and hides the scroll bar. The specific code is as follows: In html <div class="box"> <div>The following content will scroll separately</div> <div class="scroll"> <div class="content"> <p>1111111111111111</p> <p>22222222222222</p> <p>333333333333333</p> <p>444444444444444</p> <p>1111111111111111</p> <p>22222222222222</p> <p>333333333333333</p> <p>444444444444444</p> </div> </div> </div> CSS part <style> div{ font-size: 15px; margin-bottom: 20px; } .content{ height: 300px;v // The height of the scrolling part must be set background-color: cadetblue; color: antiquewhite; overflow-x: hidden; /*x-axis scrolling is prohibited*/ overflow-y: scroll;/*y-axis scroll*/ } .content::-webkit-scrollbar { display: none;/*Hide scroll bar*/ } p{ margin-bottom: 30px; font-size: 17px; color: #333; } </style> Summarize The above is the CSS that I introduced to you to add scrolling to div and hide the scroll bar. 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! |
>>: Common functions of MySQL basics
The telnet in the Alpine image has been moved to ...
1. Check the maximum number of open files in the ...
Docker download address: http://get.daocloud.io/#...
Check the top 100 highest scores in game history ...
js data types Basic data types: number, string, b...
1. Concurrency Concurrency is the most important ...
Table of contents Preface Step 1: Setup and front...
Table of contents Preface 1. MySQL main storage e...
1. What is mycat A completely open source large d...
I often need to change nginx configuration at wor...
Preface When we build a MySQL cluster, we natural...
Table of contents Introduction Example: Event del...
This article example shares the specific code of ...
cause I once set up WordPress on Vultr, but for w...
1. Understanding the meaning of web standards-Why...