【CSS】background-colorを透過する時の備忘録(IE11対策)
- 2021.2.12
- デザインのメモ



実装
See the Pen 【CSS】background-colorを透過する時の備忘録(IE11対策) by 125naroom (@125naroom) on CodePen.
CSS
.one_area .one_box:nth-child(2) {
background: rgba(255, 255, 255, 0);/*IE11*/
background: rgb(255 255 255 / 0%);
}
さいごに


















