Search
 
SCRIPT & CODE EXAMPLE
 

CSS

custom scrollbar

body::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}
body::-webkit-scrollbar-track {
  background: orange;        /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
  background-color: blue;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid orange;  /* creates padding around scroll thumb */
}
Comment

css edit scroll bar

::-webkit-scrollbar{width:6px;border-left:1px solid #E6ECF8;}
::-webkit-scrollbar-thumb{background-color:#d6872c;}
Comment

style scroll bar css


/* width */
::-webkit-scrollbar {
  width: 20px;
}
/* Track */
::-webkit-scrollbar-track {
  /* border-radius: 5px; */
}
/* Handle */
::-webkit-scrollbar-thumb {
  background:rgba(58, 114, 60, 1);
  /* border-radius: 5px 0 0 5px; */
  /* box-shadow: inset 5px -5px 5px rgba(58, 114, 60, 1); */
}
Comment

Css Custom Scrollbar

*::-webkit-scrollbar {width: 10px;background-color:#0b1120} 
*::-webkit-scrollbar-track {background-color:#e2e8f0} 
*::-webkit-scrollbar-thumb {border-radius: 1rem; background-color:#94a3b8}
Comment

custom scrollbar css

/* transparent scrollbar */
div::-webkit-scrollbar {
  width: 12px;
}

div::-webkit-scrollbar-thumb {
  border: 2px solid #ffffff2f;
  border-radius: 20px;
}
Comment

Css Custom Scrollbar


body::-webkit-scrollbar {
    @apply w-[10px] bg-[#0b1120];
}
body::-webkit-scrollbar-track {
    @apply bg-slate-200 dark:bg-[#0B1120];
}
body::-webkit-scrollbar-thumb {
    @apply rounded-xl bg-gray-600 dark:bg-slate-700;
}
Comment

css custom scrollbar

::-webkit-scrollbar { } /* Entrie scrollbar*/
::-webkit-scrollbar-track { } /* Scrollbar track */
::-webkit-scrollbar-thumb { } /* Scrollbar handle */
Comment

Custom Scroll Bar CSS

::-webkit-scrollbar{
    width: 0.9vw;
    background: #777;
}
::-webkit-scrollbar-thumb{
    background: -webkit-linear-gradient(transparent,#30ff00);
    background: linear-gradient(transparent,#30ff00);
    border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover{
   background: -webkit-linear-gradient(transparent,#00c6ff);
   background: linear-gradient(transparent,#00c6ff); 
}
Comment

customize scroll bar CSS

  .Class::-webkit-scrollbar {
    width: 2px;
  }
  
  .Class::-webkit-scrollbar-track {
    border-radius: px;
    background: #c9cacc;
  }
  
  .Class::-webkit-scrollbar-track:hover {
    background: #78797a;
  }
  
  .Class::-webkit-scrollbar-thumb {
    background: #3d5585; 
    border-radius: 10px;
  }
  
  .scroll-bar::-webkit-scrollbar-thumb:hover {
    background: #01143b; 
  }
Comment

custom scrollbar

  body::-webkit-scrollbar {
    width: 12px;
}
body::-webkit-scrollbar-thumb {
    background: #ff9c44;
    border-radius: 6px;
}

by moheen
Comment

PREVIOUS NEXT
Code Example
Css :: Cambiar el color de texto al hacer scroll css 
Css :: css horizontal line around text 
Css :: css create sidebar 
Css :: show arrow on hover css 
Css :: parent hover and child hover at the same time 
Css :: text background color css 
Css :: @container 
Css :: flex-flow 
Css :: cypress element css 
Css :: how to change logo size in wordpress 
Css :: resize any element in CSS 
Css :: css clamp 
Css :: vertical divider between my flexbox 
Css :: add border to png image using css 
Css :: php executable not found. install php 7 and add it to your path 
Css :: overflow in css 
Css :: adding a perfect responsive background image 
Css :: fabric bring to front element top 
Css :: CSS 3D Transforms 
Css :: gap between two flex items 
Css :: Html css forbidden cursor 
Css :: user-select: none; 
Css :: deploy truffle project on testnet 
Css :: css chamfered corner 
Css :: css transforms 
Css :: css style select arrow color 
Css :: for...of...loop 
Css :: put a background image in css with absolute layout 
Css :: webkit appreance none select 
Css :: css rounded circle image 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =