I'm attempting to create a social media button using an anchor tag and a fontawesome icon. My goal is to have the entire background colored black with CSS, but my previous attempts only resulted in the bottom half turning black.
https://i.sstatic.net/SwV6K.png
Html:
<div class="social-media">
<a class="social-media-icon">
<i class="fa fa-instagram fa-4x" aria-hidden="true"></i>
</a>
</div>
Css (less):
.social-media{
.social-media-icon{
color: red;
background-color: black;
}
}
Can anyone provide guidance on what steps I should take?