::-webkit-meter-even-less-good-value
非标准:此功能是非标准的,并且不在标准轨道上。请勿在面向 Web 的生产站点上使用它:它不会对每个用户都起作用。实现之间也可能存在很大的不兼容性,并且行为将来可能会发生变化。
::-webkit-meter-even-less-good-value
用于设置 <meter>
元素的样式,当值和最佳属性落在低-高范围之外,但在相反的区域时。例如,当value < low < high < optimum 或 value > high > low > optimum 时,它适用。
红色是默认颜色。
语法
css
::-webkit-meter-even-less-good-value {
/* ... */
}
示例
HTML
html
Normal:
<meter min="0" max="10" low="3" high="7" optimum="8" value="2">
Score 2/10
</meter>
<br />
Styled:
<meter id="styled" min="0" max="10" low="3" high="7" optimum="8" value="2">
Score 2/10
</meter>
CSS
css
body {
font-family: monospace;
}
.safari meter {
/* Reset the default appearance for Safari only */
/* .safari class is added via JavaScript */
-webkit-appearance: none;
}
#styled::-webkit-meter-even-less-good-value {
background: linear-gradient(to bottom, #f77, #900 45%, #900 55%, #f77);
height: 100%;
box-sizing: border-box;
}
JavaScript
js
// Safari requires <meter> elements to have an `appearance` of `none` for custom styling
// using `::-webkit-meter-*` selectors, but `appearance: none` breaks rendering on Chrome.
// Therefore, we must check if the browser is Safari-based.
const is_safari =
navigator.userAgent.includes("AppleWebKit/") &&
!navigator.userAgent.includes("Chrome/");
if (is_safari) {
document.body.classList.add("safari");
}
结果
规范
不属于任何标准。
浏览器兼容性
BCD 表格仅在浏览器中加载
另请参阅
WebKit/Blink 用于设置 <meter>
元素其他部分样式的伪元素如下所示