Solution to the inability to set the scroll bar color in IE6
Generally, when setting the scroll bar style, the following CSS code is used:
body { scrollbar-face-color:#f6f6f6; scrollbar-highlight-color:#fff; scrollbar-shadow-color:#eeeeee; scrollbar-3dlight-color:#eeeeee; scrollbar-arrow-color:#000; scrollbar-track-color:#fff; scrollbar-darkshadow-color:#fff; }
But it doesn’t matter in IE6 use. The solution is to change the body to html. The modified code is as follows:
html { scrollbar-face-color:#f6f6f6; scrollbar-highlight-color:#fff; scrollbar-shadow-color:#eeeeee; scrollbar-3dlight-color:#eeeeee; scrollbar-arrow-color:#000; scrollbar-track-color:#fff; scrollbar-darkshadow-color:#fff; }
The above is the detailed solution to the problem of not being able to set the scroll bar color under IE6. For more information, please pay attention to other related articles on the PHP Chinese website!
Related articles:
DIV implements automatic scrolling function and scroll bar color modification