I am trying to stretch my element classed 'footer' to stretch along the bottom of my page. It stretches to fit 95% of the bottom, by estimation. Also, how do I manipulate each icon to space evenly but to the bottom left of my html page. I've classed each icon as its own class
Ex: class='github'
HTML
<div class='footer'>
<a href='https://github.com/'><img src='images/github-favicon.png'
style="width:30px; height: 30px;" class='github'></a>
<a href='https://www.linkedin.com/in/'><img src='images/linkedin-favicon.png'
style="width: 30px; height: 30px;" class='LinkedIn'></a>
<a href='https://www.instagram.com/'><img src='images/instagram-favicon.png'
style="width:30px; height: 30px;" class='Instagram'></a>
<a href='https://www.facebook.com/'><img src='images/facebook-favicon.png'
style="width:30px; height: 30px;" class='facebook'></a>
</div>
CSS
.footer {
clear: both;
background-color: green;
padding: 12px;
position: fixed;
bottom: 0px;
width: 98%;
display: flex;
}