« CSS « CSS リファレンス
以下の例はすべて、要素のテキストを赤色にします:
element { color: red }
element { color: #f00 }
element { color: #ff0000 }
element { color: rgb(255,0,0) }
element { color: rgb(100%, 0%, 0%) }
element { color: hsl(0, 100%, 50%) }
color に透過させるためのアルファチャンネルを含めたいときは、RGBA や HSLA カラーが使用できます:
element { color: rgba(255, 0, 0, 0.5) } Firefox 3 の新機能
element { color: hsla(0, 100%, 50%, 0.5) } Firefox 3 の新機能
これら 2 つの例は、透過度が 0.5 または 50% に設定された色を作成します。
Page last modified 16:16, 2008年6月8日 by Marsf