de | en

CSS font color

CSS Font-Color

Description

The CSS color property is used to define the font color of the selected element.

Example Font Color

p.black {
   color: #000000;
}
p.red {
   color: red;
}
p.blue {
   color: rgb(0, 0, 255);
}

More CSS Properties