Social Media Icons

I'm trying to change the color of the icon to white, I did everything I could, but couldn't find any solution.

HTML: <div class="social">
<div class="facebook">
<a href="#">
<img src="facebook-f.svg">
</div>

<div class="twitter">
<a href="#">
<img src="twitter.svg">
</div>

<div class="instagram">
<a href="#">
<img src="instagram.svg">
</div>
</div>

CSS:
.social{
display:flex;
justify-content: flex-end;
transform: translate(-100px, 30px);
gap:1rem;
height:20px;
color:white;
}


.social img {
width: 20px;
height: 20px;
}
Image-icon-help.png
Was this page helpful?