Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to decrease x-axis scrollbar width through css

div
{
 width: 30em;
    overflow-x: auto;
    white-space: nowrap;
 }

div::-webkit-scrollbar {
  width:2px;
}

div::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #00bd86;
  outline: 2px solid slategrey;
}

div::-webkit-scrollbar:vertical {
  display: none;
}
Comment

PREVIOUS NEXT
Code Example
Css :: customHook-axios 
Css :: create an outline of a square css 
Css :: position inset css 
Css :: what is a trailling widget in flutter 
Css :: prevent the blue highlighting on mobile 
Css :: button two lines on ipad 
Css :: Options for DNSSEC verification of other zones 
Css :: flex-direction 
Css :: write mode css 
Css :: fixed with 
Css :: centralize image css 
Css :: blob svg 
Css :: how to add background shadow css 
Typescript :: typescript react onchange event type 
Typescript :: jquery id that starts with 
Typescript :: vue pmvue.ps1 cannot be loaded because running scripts is disabled on this system 
Typescript :: Numeric data type is returned as String 
Typescript :: elements with the button role must be focusable 
Typescript :: remove contraints command psql 
Typescript :: styled components hover 
Typescript :: typescript sort array of objects by date descending 
Typescript :: weakly connected components in graph 
Typescript :: angular get current date yyyy-mm-dd 
Typescript :: Redirects in Odoo Website 
Typescript :: typescript constructor assignment shorthand 
Typescript :: list the constituents of the xylem. what would happen if the xylem of root of a plant is blocked? 
Typescript :: typescript string interpolation 
Typescript :: typescript check if string is base64 or not path to src 
Typescript :: install eslint for typescript 
Typescript :: typescript switch test per case 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =