Movatterモバイル変換


[0]ホーム

URL:


  1. 面向开发者的 Web 技术
  2. CSS:层叠样式表
  3. CSS 参考
  4. Properties
  5. accent-color

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in EnglishAlways switch to English

accent-color

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

CSS 属性accent-color 用于为某些元素生成的用户界面控件设置强调色。

尝试一下

accent-color: red;
accent-color: #74992e;
accent-color: rgb(255 255 128);
accent-color: hsl(250 100% 34%);
<section>  <div>    <input checked="" type="checkbox" />    <label for="example-element">示例标签</label>  </div></section>
.container > div {  display: flex;  align-items: center;}#example-element {  width: 40px;  height: 40px;}#example-label {  margin-left: 10px;  font-size: x-large;}

当前支持accent-color 的浏览器,会将其应用于以下 HTML 元素:

每个用户代理(浏览器)都有其默认的强调色,并会根据可读性和对比度进行适当调整。这种强调色并不会被所有用户界面控件或控件的所有状态使用。accent-color 仅适用于那些在特定状态下会使用强调色的用户界面控件。

语法

css
/* 关键字值 */accent-color: auto;/* <color> 值 */accent-color: darkred;accent-color: #5729e9;accent-color: rgb(0 200 0);accent-color: hsl(228 4% 24%);/* 全局值 */accent-color: inherit;accent-color: initial;accent-color: revert;accent-color: revert-layer;accent-color: unset;

auto

表示由用户代理选择的颜色,应与系统或平台的强调色保持一致(如果存在)。

<color>

指定要用作强调色的颜色。

形式定义

初始值auto
适用元素所有元素
是否是继承属性
计算值auto is computed as specified and<color> values are computed as defined for thecolor property.
动画类型按计算值的类型

形式语法

accent-color =
auto|
<color>

示例

设置自定义强调色

HTML

html
<input type="checkbox" checked /><input type="checkbox" checked />

CSS

css
input {  accent-color: auto;  display: block;  width: 30px;  height: 30px;}input.custom {  accent-color: rebeccapurple;}

结果

规范

Specification
CSS Basic User Interface Module Level 4
# widget-accent

浏览器兼容性

参见

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp