重音颜色CSS属性设置由某些元素生成的用户界面控件的重音颜色。
accent-color =
auto |

<input type="checkbox"/>
<input type="radio"/>
<input type="range"/>
<progress>progress>
没有添加的样式

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>02-accent-colortitle>
<style>
.input1 {
accent-color: green;
}
.input2 {
accent-color: grey;
}
.input3 {
accent-color: antiquewhite;
}
progress {
accent-color: blueviolet;
}
style>
head>
<body>
<input type="checkbox" class="input1">input>
<input type="radio" class="input2">input>
<input type="range" class="input3">input>
<progress>progress>
body>
html>
