::-webkit-progress-value - CSS | MDN

Syntax

css

::-webkit-progress-value {
  /* ... */
}

Examples

This example will only work in browsers based on Blink or WebKit.

HTML

html

<progress value="10" max="50"></progress>

CSS

css

progress {
  -webkit-appearance: none;
}

::-webkit-progress-value {
  background-color: orange;
}

Result

Result screenshot

A progress bar using the style above would look like this:

A long orange and grey box. The left 20% is orange. The right 80% is grey.

Specifications

Not part of any standard.

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.