HTML 5 Progress Elements

Html 5 Progress Elements

A progress element is used to determine completion of a progress. A progress element must have an opening tag < progress > and a closing tag < / progress >

Similar to an range input you are able to set a value and max attribute. Ex:

< progress max = "100" value = "5" >

Now go ahead and start having fun styling these new html elements using there pseudo's

/* the main bar, ex: my indented background. */

progress[value]::-webkit-progress-bar {
}

/* the bar fill, ex: my teal color. */

progress[value]::-webkit-progress-value {
}

A quick Codepen tutorial on styling progress elements in Chrome by: Scott Marshall