- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Define colors using the Red-Green-Blue model (RGB) with CSS
Use the CSS rgb() function to define color using the RGB Model. You can try to run the following code to set the color with Reg-Green-Blue (RGB) model
Example
<!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>
- Related Articles
- Define colors using the Red-Green-Blue-Alpha model (RGBA) with CSS
- Define colors using the Hue-Saturation-Lightness model (HSL) with CSS
- Define colors using the Hue-Saturation-Lightness-Alpha model (HSLA) with CSS
- Define the CSS Box Model
- How to create a plot using rgb colors in R?
- How to convert a colored image to blue/green/red image using Java OpenCV library?
- CSS rgb() Function
- What do we observe on pouring acetic acid on red and blue litmus papers?(A) Red litmus remains red and blue litmus turns red.(B) Red litmus turns blue and blue litmus remains blue.(C) Red litmus turns blue and blue litmus turns red.(D) Red litmus becomes colourless and blue litmus remains blue.
- List with a blue left border using CSS
- A jar contains 12 red balls, 4 blue balls, and 4 green balls. What is the probability of getting a green ball?
- C Program to Change RGB color model to HSV color model
- A student covered a torch with red cellophane sheet to obtain red light. Using the red light she obtains a shadow of an opaque object. She repeats this activity with green and blue light. Will the colour of the light affect the shadow? Explain.
- Usage of rgb() CSS function
- Define skew transforms along with x axis using CSS
- Define skew transforms along with y axis using CSS

Advertisements