HTML and CSS progress bar -
i want create progress bar in below 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
Comments
Post a Comment