::-webkit-meter-optimum-value

非标准:此功能是非标准的,并且不在标准轨道上。不要在面向 Web 的生产站点上使用它:它对每个用户都不起作用。实现之间也可能存在很大的不兼容性,并且行为将来可能会发生变化。

::-webkit-meter-optimum-value CSS 伪元素<meter> 元素的值在低-高范围内或值等于最佳值时对其进行样式设置。

绿色是默认颜色。

语法

css
::-webkit-meter-optimum-value {
  /* ... */
}

示例

此示例仅在基于 WebKit 或 Blink 的浏览器中有效。

HTML

html
Normal:
<meter min="0" max="10" low="3" high="7" optimum="6" value="6">
  Score 6/10
</meter>
<br />
Styled:
<meter id="styled" min="0" max="10" low="3" high="7" optimum="6" value="6">
  Score 6/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-optimum-value {
  background: linear-gradient(to bottom, #7f7, #090 45%, #090 55%, #7f7);
  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 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅