To have a slide bar in HTML5, we can use range input. i.e.
<input type="range" min="0" max='5' value="0" step="1" >
The default behavior is to have a minimum value on the left side and a maximum value on the right side. Is there a way that I can put the maximum value on the left side?
I know I can do this with Javascript. Is there a way to do this with HTML only?
The answer to a "possible duplicate question":
This question is being solved by javascript, and I ask only for HTML solution. I think it is obvious that this is not duplication?
source share