The scroll bar style mainly involves the following CSS properties:
Overflow property: Retrieves or sets how content is displayed when the object's content exceeds its specified height and width
Overflow:auto; The content is automatically added to the scroll bar when needed
Overflow:scroll; Always show scroll bars
Overflow-x: Hidden; Prohibit horizontal scroll bars
OVERFLOW-Y: scroll; Always show portrait scroll bar
width:568px; width:98%; Set the width of the area [pixels/percent, etc.]
height:120px; Set the height of the area [pixels/percent, etc.]
<STYLE>
BODY {
Scrollbar-face-color: #f892cc;
Scrollbar-highlight-color: #f256c6;
Scrollbar-shadow-color: #fd76c2;
Scrollbar-3dlight-color: #fd76c2;
Scrollbar-arrow-color: #fd76c2;
Scrollbar-track-color: #fd76c2;
Scrollbar-darkshadow-color: #f629b9;
Scrollbar-base-color: #e9cfe0
}
</STYLE>
Scrollbar-face-color: The color of the bulge of the scroll bar
Scrollbar-highlight-color: The color of the blank part of the scroll bar
Scrollbar-shadow-color: Color of the solid scrollbar shadow
Scrollbar-3dlight-color: The color of the scroll bar's bright edges
Scrollbar-arrow-color: The color of the triangular arrows on the top and bottom buttons
Scrollbar-track-color: The background color of the scroll bar
Scrollbar-darkshadow-color: Color of the scroll bar strong shadow
Scrollbar-base-color: basic color of scroll bars
Remove the scroll bar from the page:
Remove horizontal scroll bar: <body style= ' Overflow:scroll;overflow-x:hidden ' >
Remove vertical scroll bar: <body style= ' Overflow:scroll;overflow-y:hidden ' >
All two removed: <body scroll= "No" >
Box Plus in the scroll bar after Name= "" Add scrolling= "No"