Example 1: custom scrollbar
 body::-webkit-scrollbar {   width: 12px;                } body::-webkit-scrollbar-track {   background: orange;         } body::-webkit-scrollbar-thumb {   background-color: blue;       border-radius: 20px;          border: 3px solid orange;   }
 Example 2: bootstrap overflow hidden
 <div class="overflow-auto">...</div> <div class="overflow-hidden">...</div>
 Example 3: make a container scrollable bootstrap
 .anyClass {   height:150px;   overflow-y: scroll; }
 Example 4: custom scrollbar
 ::-webkit-scrollbar              {  } ::-webkit-scrollbar-button       {  } ::-webkit-scrollbar-track        {  } ::-webkit-scrollbar-track-piece  {  } ::-webkit-scrollbar-thumb        {  } ::-webkit-scrollbar-corner       {  } ::-webkit-resizer                {  }    :horizontal :vertical :decrement :increment :start :end  :double-button :single-button :no-button :corner-present :window-inactive    ::-webkit-scrollbar-track-piece:start {     }  ::-webkit-scrollbar-thumb:window-inactive {     }  ::-webkit-scrollbar-button:horizontal:decrement:hover {     }    body::-webkit-scrollbar {     width: 1em; } body::-webkit-scrollbar-track {     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); } body::-webkit-scrollbar-thumb {   background-color: darkgrey;   outline: 1px solid slategrey; }
 		
 
Comments
Post a Comment