Misalignment of Facebook & Twitter buttons

前端 未结 18 1428
你的背包
你的背包 2021-02-01 13:18

The page contains two buttons, from twitter and from facebook.

What I\'m observing in Firefox 3.5.15 is:

  1. While the page is loading, the buttons are more or
18条回答
  •  鱼传尺愫
    2021-02-01 14:00

    Found the style that is pushing it down ..

    If you use FireBug and scroll down to the iframe within the FB button.

    This CSS style

    .fb_iframe_widget iframe
    

    has this element

    vertical-align: text-bottom;
    

    That's the one who's pushing it down.

    You can override the CSS style with the following combo of selector and !important

    .twitter-share-button[style] { vertical-align: text-bottom !important; }
    

提交回复
热议问题