rgba(R,G,B,Alpha)
rgba(「0~255」,「0~255」,「0~255」,「0.00~1.00」)
「rgba()」の値は、
「,」で区切って複数の値を指定する。
「不透明度0(透明)%(0.00)」を指定する場合 | rgba( R, G, B, 0) |
「不透明度25%(0.25)」を指定する場合 | rgba( R, G, B, 0.25) |
「不透明度50%(0.5)」を指定する場合 | rgba( R, G, B, 0.50) |
「不透明度75%(0.75)」を指定する場合 | rgba( R, G, B, 0.75) |
「不透明度100%(不透明)(1.00)」を指定する場合 | rgba( R, G, B, 1) |
0.00
0.10
0.20
0.30
0.40
0.50
0.60
0.80
1.00
「赤(Red)」の背景色を指定する書式
background-color:rgba(255,0,0,0);
background-color:rgba(255,0,0,0.50);
background-color:rgba(255,0,0,1);
「緑(Green」の背景色を指定する書式
background-color:rgba(0,255,0,0.50);
「青(Blue)」の背景色を指定する書式
background-color:rgba(0,0,255,0.50);
「白」の背景色を指定する書式
background-color:rgba(255,255,255,0.50);
「黒」の背景色を指定する書式
background-color:rgba(0,0,0,0.50);