I am currently working on rendering images on a website. The images display perfectly in Firefox and Chrome, but I am encountering issues with Safari (version 7.0.3). Specifically, the image shifts to the bottom right in Safari, whereas I would like it to be positioned at the bottom center.
Below is my CSS code:
.circular {
/*margin: 10px 30px 0px 30px;*/
display: block;
margin: 0 auto;
position: relative;
bottom:-400px;
left:93%;
transform:translateX(-50%);
}
Here is the HTML structure:
<section class="module parallax parallax-1">
<div class="container">
<div class="circular" style="vertical-align:middle; text-align:center;"><img src="images/index/yoyo.png" width=120px height=120px></div>
<div class="social_tags" style="vertical-align:middle;">
<a href="https://github.com/yoyo"><img src="images/index/github.png" width=40px height=40px></a>
<a href="https://www.facebook.com/yoyo"><img src="images/index/facebook.png" width=40px height=40px></a>
<a href="mailto:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="225b4d5b4d62454f434b4e0c414d4f">[email protected]</a>?Subject=Hello" ><img src="images/index/gmail.png" width=40px height=40px></a>
<a href="https://in.linkedin.com/in/yoyo"><img src="images/index/linkedin.png" width=40px height=40px></a>
</div>
</div>
</section>