HTML and CSS progress bar -


i want create progress bar in below image:

progress bar - image

no idea how create it.

would please give me creating progress bar?

you can use html5 progress element

html

<progress max="100" value="80"></progress> 

css

progress {     height: 16px;     width: 400px;     -moz-appearance: none;     -webkit-appearance: none;     appearance: none;     border-radius: 24px;     background: #fff;     border: solid 2px #e5e5e5; } progress::-webkit-progress-bar {     height: 16px;     background: #37cc7d;     border-radius: 20px; } progress::-webkit-progress-value {     height: 16px;     background: #37cc7d;     border-radius: 20px; } progress::-moz-progress-bar {     height: 16px;     background: #37cc7d;     border-radius: 20px; } 

major modern browsers run progress element - caniuse

demo here


Comments

Popular posts from this blog

python - jinja2: TemplateSyntaxError: expected token ',', got 'string' -

Qt4: how to send QString inside a struct via QSharedMemory -

node.js - NodeJS remote terminal to Dropbear OpenWRT-Server -