::-webkit-meter-suboptimum-value

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

::-webkit-meter-suboptimum-value 伪元素<meter> 元素的值属性超出低高范围且不等于最佳值时对其进行样式设置。

黄色是默认颜色。

语法

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

示例

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

HTML

html
Normal:
<meter min="0" max="10" low="3" high="7" optimum="6" value="2">
  Score 2/10
</meter>
<br />
Styled:
<meter id="styled" min="0" max="10" low="3" high="7" optimum="6" 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-suboptimum-value {
  background: linear-gradient(to bottom, #ff7, #990 45%, #990 55%, #ff7);
  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> 元素其他部分样式的伪元素如下所示