How to align Facebook and Tweet buttons?

ぃ、小莉子 提交于 2019-12-01 02:29:18

Just add:

height:63px; to the class of the FB iFrame in CSS:

Simply add this CSS: .twitter-share-button { vertical-align:top }.

To solve the default style

    <span style="vertical-align: bottom">

can be fixed by seting

    .fb-like {
        line-height: 0.7
    }

or

    .fb-like span {
        position: relative;
        top: -7px
    }

in your CSS

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!