JSFiddle - React, Tailwind, and code Playground
HTML
<footer>
<div class="like-container">
<ul class="like-buttons">
<li class="fb-like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http://www.something.com&layout=button_count&show_faces=false&action=like&font=arial&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:30px;" allowTransparency="true"></iframe>
</li>
</ul>
</div>
<p>© 2012 <a href="http://www.something.com">Something, Inc.</a></p>
</footer>
CSS
ul.like-buttons{
list-style: none;
padding: 5px 0 20px 0;
margin: 0 auto;
width: 310px;
}
ul.like-buttons li{
display: block;
float: left;
margin-right: 10px;
}