Is it possible to specify a decimal for a step parameter within the range element? According to a few articles I’ve read, including one on Nettuts, this should be possible. This does not appear to be working in any browsers. I’ve tried Chrome, Safari, and mobile Safari. Am I misunderstanding simple here, or is this just not supported quite yet?
<input id='something' type='range' min='0' max='20' step='.25' value='5' />
http://jsfiddle.net/Df57B/
Check out this demo it is possible to give steps in decimal.
Your mistake take is that you gave .25 instead of 0.25.