My share buttons at the bottom of my page look fine in Chrome and Firefox:
https://i.sstatic.net/4mkbv.png
In Safari, not so much:
https://i.sstatic.net/X5WbO.png
And in Opera, they break too:
https://i.sstatic.net/66iXp.png
Here is my HTML code:
<div class="social">
<div class='custom-tweeter-follow'>
<a class="twitter-follow-button" href="https://twitter.com/mycompany" data-show-count='false'>Follow @mycompany</a>
</div>
<div class="fb-like" data-href="https://www.facebook.com/mycompany" data-layout="button" data-action="like" data-show-faces="true" data-share="false"></div>
<div class='custom-gplus-follow'>
<g:plusone size="medium" count="false" href='https://plus.google.com/xxx'></g:plusone>
</div>
<div syle='clear:both'></div>
</div>
And here is my CSS:
.copyright {
float: left
line-height: 25px
font-weight: 300
font-size: 14px
width: 240px
}
.custom-tweeter-follow {
float: left
margin: 5px 10px 0px 0px
}
.custom-gplus-follow {
float: right
margin: 5px 0px 0px 0px
}
I'm not sure what I am doing wrong here. How can I prevent issues like this in the future? This should be pretty standard (sorry, I'm not a UI developer). What are other people doing differently?