CSS 背景色を透過させる background-color rgb()
CSSで要素の背景色を透過するにはbackground-color
のrgb()
を使用します。
サンプル
.sample01{
background-color: rgba(255, 0, 0, 1);
}
.sample02{
background-color: rgba(255, 0, 0, 0.5);
}
.sample03{
background-color: rgba(255, 0, 0, 0);
}
.sample04{
background-color: rgba(255, 255, 0, 0.5);
}
See the Pen
css-background-opacity by Aquarium (@aquarium)
on CodePen.
解説
background-color: rgba(①色, ②色, ③色, ④透過度);
- ①~③色 数字の
0~255
で指定します - ④透過度
0~1
ので指定します。数字が少ないほど透過します。