I would usually use margin: auto;
, text-align: center;
, or left: 50%; transform: translateX(-50%);
to center align an icon. But I cannot figure out how to center align three icons. I figured using these strategies on a wrapping div would work but it hasn't. I need them all in the same row like this:
<div class="socialWrap">
<a href="/content/campaigns/we-retail" target="_blank"><i class="fa fa-facebook-square"></i></a>
<a href="/content/campaigns/we-retail" target="_blank"><i class="fa fa-twitter-square"></i></a>
<a href="/content/campaigns/we-retail" target="_blank"><i class="fa fa-youtube"></i></a>
</div>