我已经在mysite上使用了twitter和facebook share插件,可以在this小提琴上看到。但是我很难使按钮垂直对齐。我试过使用margin-top和padding-top,但是始终保持未对齐状态。如何使同一行上的以下tweet和Facebook分享按钮看起来不错:

<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.directory.shopious.com" data-text="some share" data-lang="id" data-size="large" data-count="none">Tweet</a>


    <div class="fb-share-button" data-href="http://www.mysite.com" data-width="500" data-type="button_count"></div>

最佳答案

利用vertical-align属性

.fb-share-button {
   vertical-align: top;
}

09-25 18:18
查看更多