Answers for "how to reduce background image opacity but not text opacity in css"

CSS
4

set background image opacity

#bg{
background-image: url('images/wood1.jpg');
opacity:0.2;
width:300px;
height:300px;
}
Posted by: Guest on October-16-2020
0

background having opacity and text above to not have opacity

background-color: rgba(255,0,0,0.6);
Posted by: Guest on September-02-2020

Browse Popular Code Answers by Language