::-webkit-meter-bar
Non-standard: This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
The ::-webkit-meter-bar
CSS pseudo-element is a WebKit extension that represents the meter bar in a <meter>
element. It is used for selecting and applying styles to the container meter gauge.
Syntax
css
::-webkit-meter-bar {
/* ... */
}
Specifications
Not part of any standard.
Examples
HTML
html
<meter min="0" max="10" value="6">Score out of 10</meter>
CSS
css
meter {
/* Reset the default appearance for -webkit- only */
-webkit-appearance: none;
}
meter::-webkit-meter-bar {
background: #eee;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
border-radius: 3px;
}
Result
Browser compatibility
BCD tables only load in the browser
See also
- The pseudo-elements used by WebKit/Blink to style other parts of a
<meter>
element are as follows: - WebKit CSS extensions