css background transparency or alpha mode

Solutions on MaxInterview for css background transparency or alpha mode by the best coders in the world

showing results for - "css background transparency or alpha mode"
Mira
23 Jan 2019
1background-color: rgba(255, 0, 0, 0.4);
2
Patrice
12 Oct 2020
1div{
2  background-color: rgba(173, 216, 230, 0.5);
3}