color

color
CSS color Property
The CSS color property is used to specify foreground color for the text inside of your elements.
CSS CODE EXAMPLE
<style type="text/css">
#p1 {
    color: #099;
}
</style>
<p id="p1">This is my paragraph....</p>
 
This is my paragraph....

Possible Values:

Simple Color Name
redgreenblueetc...

RGB Color Value
rgb(0,0,255)rgb(0,255,0)rgb(255,0,0)etc...

Hexidecimal Color Value
#FF0#009900#0099FFetc...

0 Response to "color"

Post a Comment