Home > Web Front-end > HTML Tutorial > css之-webkit-scrollbar_html/css_WEB-ITnose

css之-webkit-scrollbar_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:51:41
Original
1144 people have browsed it

You can customize the style of the scroll bar in IE, and webkit-based browsers can now customize its style:

::-webkit-scrollbar              { /* 1 */ }  
Copy after login
::-webkit-scrollbar-button       { /* 2 */ }  
Copy after login
::-webkit-scrollbar-track        { /* 3 */ }  
Copy after login
::-webkit-scrollbar-track-piece  { /* 4 */ }  
Copy after login
::-webkit-scrollbar-thumb        { /* 5 */ }  
Copy after login
::-webkit-scrollbar-corner       { /* 6 */ }  
Copy after login
::-webkit-resizer                { /* 7 */ }  
Copy after login

::-webkit-scrollbar {

width: 12px ;

}

::-webkit-scrollbar-track {

-webkit-box-shadow: inset 0 0 6px rgba(0, 0,0,0.3);

-webkit-border-radius: 10px;

border-radius: 10px;

border:1px solid #666666

}

::-webkit-scrollbar-thumb {

-webkit-border-radius: 10px;

border-radius: 10px ;

background: rgba(255,0,0,0.8);

-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);

}

::-webkit-scrollbar-thumb:window-inactive {

background: rgba(255,0,0,0.4);

}

.test{

width:100px;

height:200px;

overflow:scroll ;

border:1px solid #666666;

}

kfalsdfjlasjldf

Reference:

http://www.webkit.org/blog/363/styling-scrollbars/

http://css-tricks. com/9130-custom-scrollbars-in-webkit/

http://www.spectrum-research.com/V2/projects_scrollbar_generator.asp

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