CSS COURSE • LESSON

🌈 CSS Colors

Master CSS and create modern responsive websites with EDUHUB CODE HUB.

CSS Colors

CSS supports different ways to define colors.

Color Name



h1 {

color: blue;

}

HEX Colors



p {

color:#ff0000;

}

RGB Colors



div {

color:rgb(255,0,0);

}

RGBA Colors



div {

background:rgba(0,0,0,0.5);

}