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
Table of contents Prerequisites Setting up a test...
Table of contents Preface 1. Parent component pas...
First, build the case demonstration table for thi...
Uses of new The function of new is to create an i...
All consecutive spaces or blank lines (newlines) ...
Swap space is a common aspect of computing today,...
Recently, a system was deployed, using nginx as a...
The main differences are as follows: 1. MySQL use...
Today, there is such a requirement. If the logged...
We all know that the underlying data structure of...
There are three types of attribute value regular ...
Preface Histogram is a basic statistical informat...
Table of contents 1. Concepts related to stored p...
I recently added a very simple color scheme (them...
The execution relationship between the href jump ...