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 */
}
/* 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); */
}
*::-webkit-scrollbar {width: 10px;background-color:#0b1120}
*::-webkit-scrollbar-track {background-color:#e2e8f0}
*::-webkit-scrollbar-thumb {border-radius: 1rem; background-color:#94a3b8}
/* transparent scrollbar */
div::-webkit-scrollbar {
width: 12px;
}
div::-webkit-scrollbar-thumb {
border: 2px solid #ffffff2f;
border-radius: 20px;
}
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;
}
/* Chrome, safari */
*::-webkit-scrollbar {
width: 8px;
}
*::-webkit-scrollbar-thumb {
background-color: gray;
}
/* Firefox */
.selector {
scrollbar-width: none;
}
::-webkit-scrollbar { } /* Entrie scrollbar*/
::-webkit-scrollbar-track { } /* Scrollbar track */
::-webkit-scrollbar-thumb { } /* Scrollbar handle */
::-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);
}
.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;
}
body::-webkit-scrollbar {
width: 12px;
}
body::-webkit-scrollbar-thumb {
background: #ff9c44;
border-radius: 6px;
}
by moheen
::-webkit-scrollbar addresses the background of the bar itself. It is usually covered by the other elements
::-webkit-scrollbar-button addresses the directional buttons on the scrollbar
::-webkit-scrollbar-track addresses the empty space “below” the progress bar
::-webkit-scrollbar-track-piece is the top-most layer of the the progress bar not covered by the draggable scrolling element (thumb)
::-webkit-scrollbar-thumb addresses the draggable scrolling element that resizes depending on the size of the scrollable element
::-webkit-scrollbar-corner addresses the (usually) bottom corner of the scrollable element, where two scrollbars might meet
::-webkit-resizer addresses the draggable resizing handle that appears above the scrollbar-corner at the bottom corner of some elements
Code Example |
---|
Css :: border 1px thick |
Css :: transform origin css |
Css :: bootstrap 4 material icon vertical align |
Css :: text-shadow css |
Css :: maxheight media query |
Css :: linear-gradient |
Css :: add quotes in quote css |
Css :: remove effect off animation css |
Css :: input type password css |
Css :: background overlay image |
Css :: horizontal line css before and after heading |
Css :: bootstrap 4 input error |
Css :: email background image |
Css :: css list items next to each other |
Css :: transform multiple css |
Css :: last child after css |
Css :: hide page scrollbar css |
Css :: css opacity |
Css :: css z index |
Css :: input type file placeholder |
Css :: star required css |
Css :: css font family |
Css :: bottom gradient |
Css :: overflow property |
Css :: style scrollbar table |
Css :: make table resopnsive for mobile |
Css :: had to add a tint to a picture on css |
Css :: inline input form css |
Css :: cool css fonts |
Css :: image orientation css |