Use RGB to Mix Colors(RGB配置橙色)
说明:
就像使用 hex code 一样,你可以使用不同数值的组合在 RGB 中混合出各种颜色。
将 body 元素的背景色修改为橙色的 RGB 值:rgb(255, 165, 0)。
原始代码:
<style>
body {
background-color: rgb(0, 0, 255);
}
</style>
调试代码:
PreviousUse Responsive Design with Bootstrap Fluid Containers(Bootstrap根据屏幕调整大小)NextMake Images Mobile Responsive(图片自动适应屏幕尺寸)
Last updated
Was this helpful?