Search
 
SCRIPT & CODE EXAMPLE
 

CSS

style input type range shaded part only

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      width: 80px;
      -webkit-appearance: none;
      background-color: #9a905d;
    }
    
    input[type='range']::-webkit-slider-runnable-track {
      height: 10px;
      -webkit-appearance: none;
      color: #13bba4;
      margin-top: -1px;
    }
    
    input[type='range']::-webkit-slider-thumb {
      width: 10px;
      -webkit-appearance: none;
      height: 10px;
      cursor: ew-resize;
      background: #434343;
      box-shadow: -80px 0 0 80px #43e5f7;
    }

}
/** FF*/
input[type="range"]::-moz-range-progress {
  background-color: #43e5f7; 
}
input[type="range"]::-moz-range-track {  
  background-color: #9a905d;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
  background-color: #43e5f7; 
}
input[type="range"]::-ms-fill-upper {  
  background-color: #9a905d;
}
Comment

PREVIOUS NEXT
Code Example
Css :: font-family: robort; 
Css :: anchor links scrolling too far 
Css :: CSS style all div elements 
Css :: css margin-top 1px 9 
Css :: many className module css 
Css :: get clicked position javascript image 
Css :: sass rainbow color background 
Css :: can i do an onclick menu with css alone 
Css :: shiny server configuration 
Css :: CSS - The Descendant Selectors 
Css :: userchrome.css location windows 10 
Css :: css color keywords 
Css :: sass @use 
Css :: project in css transforms 
Css :: css selector vs class name selenium 
Css :: print td color not working 
Css :: how to remove table border in css for last child if rowspan 
Css :: css video poster object-fit 
Css :: widht of the elemt 
Css :: roam research 
Css :: google font family poppins 
Css :: progressBars bulma -- thickness 
Css :: COMO ADC HOVER 
Css :: browser renders before styles are applied 
Css :: width in css 
Css :: Python Script to Generator QR Code 
Css :: css only style horizontal scrollbar 
Typescript :: ionic generate resources 
Typescript :: onkeydown react typescript 
Typescript :: flutter text button shape 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =