如下所示,文章末尾的“分享这篇精彩的读物:”。
我尝试了各种 CSS 更改,但无法对齐。
http://poachedmag.com/2012/11/01/laneway-festival-singapore-line-up-released/
如下所示,文章末尾的“分享这篇精彩的读物:”。
我尝试了各种 CSS 更改,但无法对齐。
http://poachedmag.com/2012/11/01/laneway-festival-singapore-line-up-released/
将此添加到您的 css 并重试:
div.share iframe.twitter-share-button { position: relative; top:3px; }
我遇到过同样的问题。我最终将每个带有 style 属性的 div 放入了自己的 div 中,float:left
对于 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>