I am currently working on a DIV that contains social media buttons. The code for this DIV is as follows:
<div class="redes-sociales col-sm-pull-6 col-md-6 col-lg-push-4 float-right py-2">
<img class="img-rounded img-social" alt="fb" src="img/fb.png">
<img class="img-rounded img-social" alt="ig" src="img/ig.png">
<img class="img-rounded img-social" alt="tt" src="img/tt.png">
</div>
Here is how it currently appears:
My goal is to have the icons centered in the middle when the page is in mobile mode, like this:
Can someone advise me on what changes I need to make to achieve this? Thank you!