Use RGB to Color Elements Green(RGB配置绿色)
说明:
现在将body 元素的背景色修改为绿色的 rgb 值:rgb(0, 255, 0)。
原始代码:
<style>
body {
background-color: rgb(255, 0, 0);
}
</style>
调试代码:
<style>
body {
background-color: rgb(0, 255, 0);
}
</style>
Last updated
Was this helpful?