From now on we will be looking in to different properties that can be handled / controlled by css.
Property: CSS Font/Text Color
Usage:
color: red;
color: rgb(125,234,124);
color: #343434;
Definition:
Colors for html font/text can be set using the css tag "color".
It accepts values in three formats.
a)color name
b)rgb(x,y,z) where x,y,z is red,green,blue
c)#xxyyz where xx,yy,zz points to hexadecimal values of red,green,blue
Example:
The following examples will show on how to set color for a font or text in html using css.
<div style="color: green;"> color name </div>
<div style="color: rgb(125,125,125);"> color using rgb(x,y,z) </div>
<div style="color: #343434;"> color using hex values</div>
Result:
color name
color using rgb(x,y,z)
color using hex values
|