From: http://tiankonglala.javaeye.com/blog/648247
The scroll bar style mainly involves the following CSS attributes:
Overflow attribute: Retrieves or sets how to display content when the content of an object exceeds its specified height and width.
Overflow: auto; the scroll bar is automatically added when necessary.
Overflow: Scroll; always displays the scroll bar
Overflow-X: hidden; Disable horizontal scroll bars
Overflow-Y: Scroll; always displays the vertical scroll bar
Width: 568px; width: 98%; set the area width [pixel/percentage, etc.]
Height: 120px; set the height of the area [pixel/percentage, 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: Color of the protruding part of the scroll bar
SCROLLBAR-HIGHLIGHT-COLOR: Color of the blank part of the scroll bar
SCROLLBAR-SHADOW-COLOR: Color of the shadow of a three-dimensional scroll bar
SCROLLBAR-3DLIGHT-COLOR: The color of the bright side of the scroll bar
SCROLLBAR-ARROW-COLOR: Up and down button up arrow color
SCROLLBAR-TRACK-COLOR: the background color of the scroll bar
SCROLLBAR-DARKSHADOW-COLOR: Color of the strong shadow of the scroll bar
SCROLLBAR-BASE-COLOR: Basic Color of the scroll bar
Remove the scroll bar from the webpage:
Remove the horizontal scroll bar: <body style = 'overflow: Scroll; overflow-X: Den den '>
Remove the vertical scroll bar: <body style = 'overflow: Scroll; overflow-Y: Den den '>
Remove both: <body scroll = "no">
Go to the scroll bar in the box and add scrolling = "no" after name ="