Difference between revisions of "CSS GUIDE COLOR"

From CDOT Wiki
Jump to: navigation, search
m (Summary)
(Legal Values)
Line 30: Line 30:
 
</tr>
 
</tr>
 
<tr>
 
<tr>
<td>Color name</td><td>Name List</td><td>green</td>
+
<td>Color name</td><td>[http://www.w3schools.com/html/html_colornames.asp W3Schools Natural Langauge Color Names]</td><td>green</td>
 
</tr>
 
</tr>
 
<tr>
 
<tr>

Revision as of 14:03, 28 October 2006

This document is a work in progress and is subject to change.

Summary

The color property is used the set the text color for a given element. The text color of an element may also be referred to as the foreground colour.

Applicability:The color property can be used for all CSS elements.
Media Group: Visual
Inherited:Yes

Syntax

Legal Values

Values can be entered in 3 ways:

MethodRangeExample
Hexadecimal (preferred)#000000 - #ffffff#00ff00 is green
Color nameW3Schools Natural Langauge Color Namesgreen
RGB value0-255rgb(102,204,102) is green

See usage examples section for more details.

Mozilla Recommended Values

Usage Examples

Notes

Specification Conformance

  • CSS 1
  • CSS 2.1
  • CSS 3

Browser Compatibility

See Also