Answers for "how can i make an image background transparent"

CSS
1

png image background transparent css

body { 
  background-color: transparent;
}
Posted by: Guest on July-25-2020
0

how to make background transparent

background-color : rgba(0, 0, 0, 0.6);
/* Transparent Black the last value decide how much transparency do we want */ 

and first 3 values decide which color you get it red, blue and green.
Posted by: Guest on March-17-2022

Code answers related to "how can i make an image background transparent"

Browse Popular Code Answers by Language