使用带有CSS的Red-Green-Blue模型(RGB)定义颜色
使用CSSrgb()
函数通过RGB模型定义颜色。您可以尝试运行以下代码以使用Reg-Green-Blue(RGB)模型设置颜色
示例
<!DOCTYPE html> <html> <head> <style> h1 { background-color:hsl(0,100%,50%); } h2 { background-color:hsl(192,89%,48%); } p { background-color:rgb(0,0,255); color: rgb(255,255,255); } </style> </head> <body> <h1>Red Background</h1> <h2>Blue Background</h2> <p>This is demo text!</p> </body> </html>