I want to customize the looks of the range input type in HTML5 to look something like a progress bar. I've tried applying some common CSS attributes using CSS class but it seems that they are not working.
Can any one direct me how to customize it??
I want to customize the looks of the range input type in HTML5 to look something like a progress bar. I've tried applying some common CSS attributes using CSS class but it seems that they are not working.
Can any one direct me how to customize it??
If you're using HTML 5, why not use the progress
tag?
<progress value="1534602" max="4603807">33%</progress>
reference here: http://www.w3schools.com/html5/tag_progress.asp
The <input type="range">
is pretty new and you are already attempting to customize it with CSS. :)
I wouldn't try that fro tow reasons:
there might be huge compatibility issues now and for the next few (or many) years.
Think that in nowdays a form control like <select>
(available since the web started) is still problematrc to be customized with CSS in a cross browser way. For instance if you set a padding
for the select boxes, many browser (IE7, OPERA9, CHROME5, SAFARI4) will totally ignore the padding.
It works only IE8 and on FF 3.6. (all tests done with HTML5 DOCTYPE so in standard mode).
The <input type="range">
has been created to show a slider NOT a progress bar, attempting to cheat on it with CSS in order to transform a slider into progress bar it sounds bizarre. Like trying to use CSS to change a <textarea>
into a table, but why don't you simply use a <table>
to render tables?!
To show a progress bar in HTML5 you should follow the suggestion given by marcgg in his answer. Since no browser is currently rendereing it you could use a simple div with a p inside like this:
<div id="progress" style="position: relative; width: 100px; height: 20px; border: 1px solid #cccccc;">
<p style="position: absolute; left: 0; top: 0; background-color: #0000ff; height: 100%; width: 30%; font-size: 0px;"> </p>
</div>
Then simply update the style.width
of inner P
element in percent like:
width: 75%
FYI: if you want to do that in simple JS here is the code:
document.getElementById('progress').(getElementsByTagName('p')[0]).style.width = "75%";
checkout html5tips link : See the topic on : 28. Create Sliders with the Range Input
Hope this helps