Difference between revisions of "CSS GUIDE COLOR"
(→Legal Values) |
(→Legal Values) |
||
Line 22: | Line 22: | ||
== Legal Values == | == Legal Values == | ||
Values can be entered in 3 ways: | Values can be entered in 3 ways: | ||
− | |||
<table border="2"> | <table border="2"> | ||
<tr> | <tr> | ||
− | <td>Hexadecimal (preferred)</td>#000000 - #ffffff<td></td><td># | + | <th>Method</th><th>Range</th><th>Example</th> |
+ | </tr> | ||
+ | <tr> | ||
+ | <td>Hexadecimal (preferred)</td>#000000 - #ffffff<td></td><td>#00ff00 is green<td> | ||
</tr> | </tr> | ||
<tr> | <tr> | ||
+ | <td>Color name</td>Name List<td></td><td>green<td> | ||
</tr> | </tr> | ||
<tr> | <tr> | ||
+ | <td>RGB value</td>0-255<td></td><td>rgb(102,204,102) is green<td> | ||
</tr> | </tr> | ||
</table> | </table> | ||
− | + | ||
− | |||
− | |||
See [[#Usage Examples | usage examples]] section for more details. | See [[#Usage Examples | usage examples]] section for more details. | ||
Revision as of 12:54, 28 October 2006
This document is a work in progress and is subject to change.
Contents
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:
Method | Range | Example | |
---|---|---|---|
Hexadecimal (preferred) | #000000 - #ffffff#00ff00 is green | ||
Color name | Name Listgreen | ||
RGB value | 0-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