Use RGB to Color Elements Blue(RGB配置蓝色)
说明:
将你的 body 元素的背景色修改为蓝色的 RGB 值:rgb(0, 0, 255)。
原始代码:
<style>
body {
background-color: rgb(0, 255, 0);
}
</style>
调试代码:
<style>
body {
background-color: rgb(0, 0, 255);
}
</style>
PreviousUse RGB to Color Elements Green(RGB配置绿色)NextUse Responsive Design with Bootstrap Fluid Containers(Bootstrap根据屏幕调整大小)
Last updated
Was this helpful?