如下文“文章末尾分享这篇精彩的读物:”。
我尝试了各种CSS更改,但无法使其对齐。
http://poachedmag.com/2012/11/01/laneway-festival-singapore-line-up-released/
答案 0 :(得分:3)
将此添加到您的CSS并再试一次:
div.share iframe.twitter-share-button { position: relative; top:3px; }
答案 1 :(得分:0)
我有同样的问题。我最后用风格属性float:left
将每个放在他们自己的div中,对于twitter持有者,我添加了margin-top:3px
,这似乎足以让它很好地排列
<div style="float:left">
<!-- FACEBOOK BUTTON -->
</div>
<div style="float:left;margin-top:3px">
<!-- TWITTER BUTTON -->
</div>
<div style="clear:both"></div>