I'm really struggling to understand this concept and not making much progress. I have a background image that automatically scales to fit the window size. In front of it, I want to center an image fixed to the bottom of the page, while still being scalable. Here is the CSS code I am currently using:
#guys img{
width:35%;
margin-left:auto;
margin-right:auto;
bottom:0px;
position: fixed;
}
And here is how I am implementing the DIV:
<div id="guys">
<img src="img/boys.png" alt="">
</div>
The issue is that the image ends up fixed at the bottom of the page and is scalable, but I can never get it centered as well. Any suggestions or thoughts? I would greatly appreciate any help!