JSFiddle - React, Tailwind, and code Playground
by Sascha
HTML
<footer>
<div id="socialIcon"><img src="images/media/telefoon.png" width="30"></div>
<div id="socialText">06-123456</div>
<div id="socialIcon"><img src="images/media/mail.png" width="30"></div>
<div id="socialText">[email protected]</div>
<div id="socialIcon"><a class="socialIcon" href="https://www.instagram.com/example/"><img src="images/media/instagram.png" width="30px"/></a></div>
<div id="socialText"><a class="socialText" href="https://www.instagram.com/example/">@example</a></div>
</footer>
CSS
footer {
background: #222222;
position: fixed;
bottom: 0;
width: 100%;
color: white;
font-family: proxima-nova, sans-serif;
text-align: center;
font-size: 20px;
}
#socialText{
display: inline-block;
margin-bottom: 10px;
}
#socialIcon{
display: inline-block;
margin-left: 10px;
margin-right: 3px;
margin-bottom: 0px;
margin-top: 0px;
padding-bottom: 0px;
height: 30px;
}