color
CSS color Property
The CSS color property is used to specify foreground color for the text inside of your elements.
red, green, blue, etc...
RGB Color Value
rgb(0,0,255), rgb(0,255,0), rgb(255,0,0), etc...
Hexidecimal Color Value
#FF0, #009900, #0099FF, etc...
CSS CODE EXAMPLE
<style type="text/css">
#p1 {
color: #099;
}
</style>
<p id="p1">This is my paragraph....</p>
#p1 {
color: #099;
}
</style>
<p id="p1">This is my paragraph....</p>
This is my paragraph....
Possible Values:
Simple Color Namered, green, blue, etc...
RGB Color Value
rgb(0,0,255), rgb(0,255,0), rgb(255,0,0), etc...
Hexidecimal Color Value
#FF0, #009900, #0099FF, etc...
0 Response to "color"
Post a Comment