The handle, also known as the knob in this input[type=range]
codepen, is not aligning correctly with the ticks. It appears to be off by varying amounts (either left or right) depending on the value. Move the handle to see for yourself. What CSS properties can I apply to make sure the handle lines up accurately with the current tick and works for all ticks on the axis?
input.range {
-webkit-appearance: none;
bottom: -10px;
position: relative;
width: 100%;
margin: 0;
padding: 0;
border: 0;
background: transparent;
}
input.range:focus {
outline: 0;
}
...
</fieldset>