Use Hex Code to Color Elements Gray(灰色)
说明:
从这三种纯色(红、绿、蓝),我们能得到 1600 万种其它的颜色。
我们也可以通过平均混合所有三种颜色得到不同灰度等级的灰色。
通过对 background-color 应用 hex code 值 #808080 以把 body 元素的背景色设置为灰色。
原始代码:
<style>
body {
background-color: #FFA500;
}
</style>
调试代码:
<style>
body {
background-color: #808080;
}
</style>
Last updated
Was this helpful?