Issue with Social Media Button Alignment
I'm encountering a problem with aligning Twitter and Facebook buttons on my website.
The alignment seems to be off and I need some help fixing it.
Code Snippet
html:
<span id="social">
<a href="https://twitter.com/share" class="twitter-share-button" data-via="guillaumgregoir">Tweet</a>
<div class="fb-like" data-href="http://csstooltip.com" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
</span>
css:
#social {
display: inline-block;
margin-left: 24px;
}
div.fb-like {
display: inline-block !important;
margin-left: 100px;
margin-top: -20px;
}