How to modify scroll bar style

php中世界最好的语言
Release: 2018-03-09 15:57:04
Original
3589 people have browsed it

This time I will bring you the method of modifying the scroll bar style. What are the precautions for modifying the scroll bar style. The following is a practical case, let's take a look.

Supports 360 extremely fast chrome firfox but does not support ie9

/*滚动条样式*/::-webkit-scrollbar {/*滚动条整体样式*/
    width: 6px!important;;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 6px!important;;
    background: #ffffff!important;;
    cursor: pointer!important;

}
::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 5px!important;
    -webkit-box-shadow: inset 0 0 5px rgba(240,240,240,.5)!important;;
    background: rgba(95,168,255,0.8)!important;;
    cursor: pointer!important;
}
::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(240,240,240,.5)!important;;
    border-radius: 0!important;;
    background: rgba(240,240,240,0.5)!important;;
    cursor: pointer!important;
}
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website Other related articles!

Related reading:

table tr th and table tr td have too many fonts, how to use CSS to solve it

WOW.js that makes the page move

How to set the 360 ​​speed mode to open by default

The above is the detailed content of How to modify scroll bar style. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template