値
次のような形式で値を設定することができます。
- カラーネーム - red,blue,black,whiteなど
- カラーコード - #ffffff(白)〜#000000(黒)
- 16進表記 - rgb(red、green、blue)について、0〜255の間の数値を指定
CSS コード例
.text1 {
color: red;
}
.text2 {
color: #555555;
}
.text3 {
color: rgb( 255, 0, 255);
}
.text1:値をカラーネームで「red」と指定
.text2:値をカラーコードで「#555555」と指定
.text3:値を16進表記で「rgb( 255, 0, 255)」と指定