Is there a way to adjust the opacity of an individual element within a div that already has opacity applied? For example, I have this div named "circle"
.circle{
width: 64px;
height: 64px;
opacity: 0.2;
border-radius: 32px;
margin: 10px;
}
Inside the "circle" div, there is another div containing a Facebook logo. How can I change the opacity of the Facebook logo independently or remove the opacity effect entirely from this specific element?