I need to make the background of a HTML component semi-transparent. Is it possible to do only with CSS?
You can use a semi-transparent PNG file. Else you can use CSS3 properties.
background-color:rgba(255,0,0,0.5);
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
You can use a semi-transparent PNG file. Else you can use CSS3 properties.
background-color:rgba(255,0,0,0.5);