小码哥的IT人生

CSS rgb() 函数 详解

css3基础 2023-07-29 16:44:16小码哥的IT人生shichen

CSS rgb() 函数

实例

定义不同的 RGB 颜色:

#p1 {background-color:rgb(255,0,0);} /* 红色 */
#p2 {background-color:rgb(0,255,0);} /* 绿色 */
#p3 {background-color:rgb(0,0,255);} /* 蓝色 */

 

完整实例【亲自试一试】:

<!DOCTYPE html>
<html>
<head>
<style>
#p1 {background-color:rgb(255,0,0);}
#p2 {background-color:rgb(0,255,0);}
#p3 {background-color:rgb(0,0,255);}
#p4 {background-color:rgb(192,192,192);}
#p5 {background-color:rgb(255,255,0);}
#p6 {background-color:rgb(255,0,255);}
</style>
</head>
<body>
<p>RGB 颜色:</p>
<p id="p1">红色</p>
<p id="p2">绿色</p>
<p id="p3">蓝色</p>
<p id="p4">灰色</p>
<p id="p5">黄色</p>
<p id="p6">樱桃色</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

rgb() 函数使用红绿蓝(RGB)模型定义颜色。

RGB 颜色值是这样规定的:rgb(red, green, blue)。每个参数定义该颜色的强度,可以是 0 到 255 之间的整数或百分比值(从 0% 到 100%)。

例如,将 rgb(0,0,255) 值呈现为蓝色,因为 blue 参数设置为其最高值(255),其他参数设置为 0。

版本: CSS2

浏览器支持

表格中的数字注明了完全支持该功能的首个浏览器版本。

函数          
rgb() 1.0 4.0 1.0 1.0 3.5

CSS 语法

rgb(red, green, blue)
描述
red 将红色强度定义为 0 到 255 之间的整数,或 0% 到 100% 之间的百分比值。
green 将绿色强度定义为 0 到 255 之间的整数,或 0% 到 100% 之间的百分比值。
blue 将蓝色强度定义为 0 到 255 之间的整数,或 0% 到 100% 之间的百分比值。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024