Use CSS to modify scroll bars Copy code The code is as follows: <textarea style="overflow-x:hidden"> </textarea> No vertical scroll bar Copy code The code is as follows: <textarea style="overflow-y:hidden"> </textarea> No scroll bars Copy code The code is as follows: <textarea style="overflow-x:hidden;overflow-y:hidden"> </textarea> or Copy code The code is as follows: <textarea style="overflow:hidden"> </textarea> 3. Set the color of the window scroll bar Set the color of the window scroll bar to red <body style="scrollbar-base-color:red"> scrollbar-base-color sets the basic color. Generally, you only need to set this one property to change the scroll bar color. Add a little special effect: Copy code The code is as follows: <body style="scrollbar-arrow-color:yellow;scrollbar-base-color:lightsalmon"> 4. When setting other elements, it is basically the same. It is best to define a class in the style sheet file so that you can reuse it. Copy code The code is as follows:.coolscrollbar { scrollbar-arrow-color:yellow; scrollbar-base-color:lightsalmon; } Add the above statement to the style sheet file or the <style> </style> of the HTML header, and then use <textarea class="coolscrollbar"> </textarea> |
<<: How to install docker under centos and remotely publish docker in springboot
1. Unzip the file to the current directory Comman...
1. Download MySQL 1. Log in to the official websi...
This article example shares the specific code of ...
Copy code The code is as follows: <!DOCTYPE ht...
download: Step 1: Open the website (enter the off...
In the past, I used to directly order by rand() t...
summary During the interview, when discussing abo...
Preface: Timestamp fields are often used in MySQL...
1. float+overflow:hidden This method mainly trigg...
Ubuntu 18.04, other versions of Ubuntu question: ...
Preface During the development process, we someti...
Some projects have relatively simple business, bu...
Background In Docker, four containers are created...
This article shares the specific code of Vue.js t...
a and href attributes HTML uses <a> to repr...