change the scrollbar color using css - HTML CSS CSS Property

HTML CSS examples for CSS Property:scrollbar-face-color

Description

change the scrollbar color using css

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

.flexcroll{ <!--  w  ww . j av a2  s  . c  o  m-->
    width:400px;
    height:200px;
    overflow:scroll;
}
.flexcroll{
   scrollbar-face-color: #367CD2;
   scrollbar-shadow-color: #FFFFFF;
   scrollbar-highlight-color: #FFFFFF;
   scrollbar-3dlight-color: #FFFFFF;
   scrollbar-darkshadow-color: #FFFFFF;
   scrollbar-track-color: #FFFFFF;
   scrollbar-arrow-color: #FFFFFF;
}
.flexcroll::-webkit-scrollbar {
   width: 12px;
}
.flexcroll::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
   -webkit-border-radius: 10px;
   border-radius: 10px;
}
.flexcroll::-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);
}


      </style> 
 </head> 
 <body> 
  <div class="flexcroll"> 
   <p> this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. 
   this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. 
   this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. 
   this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. </p> 
   <p> </p> 
   <h5>this is a test. </h5> 
   this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. 
   this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. 
   this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. 
   this is a test. this is a test. this is a test. this is a test. this is a test. this is a test. this is a test.  
   <p></p> 
   <div> 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials