Reputation: 167
Can someone who me how to make a progress bar that looks like this in css?
It, obviously will be static, so that I can incrementally increase it manually. There will be about a dozen of them used in a page to demonstrate progress of something. I don't know if CSS is the best way, but thats all I can think of right now.
Upvotes: 0
Views: 1447
Reputation: 15106
You can use an HTML5 progress bar.
<progress max="100" value="60">60%</progress>
See DEMO.
Upvotes: 4