如何对齐 Facebook 和 Tweet 按钮?

发布于 2024-10-20 21:01:21 字数 328 浏览 4 评论 0原文

我们主页上的 Facebook 和 Tweet 按钮垂直错位,我们很困惑为什么。如果我们使用 Firebug 并删除 Tweet 按钮的高度,我们可以将两个按钮顶部对齐。但是,高度是通过 Twitter 脚本动态设置和内联的。我们似乎无法覆盖高度值。

这是主页: http://www.panabee.com

我们在 CSS 中做错了什么吗?或者我们需要在推文按钮中设置一个参数来覆盖高度值吗?

我们唯一的其他选择是使用 Twitter iFrame 作为 Tweet 按钮,但我们不喜欢这样做。

谢谢!

The Facebook and Tweet buttons on our home page are vertically misaligned, and we're confused why. We can top align the two buttons if we use Firebug and remove the height for the Tweet button. However, the height is set dynamically, and inlined, from a Twitter script. We can't seem to override the height value.

Here's the home page: http://www.panabee.com

Are we doing something wrong in the CSS? Or is there a parameter we need to set in the Tweet button to override the height value?

Our only other option is to resort to the Twitter iFrame for the Tweet button, which we prefer not to do.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

你的背包 2024-10-27 21:01:21

只需添加以下 CSS:.twitter-share-button { Vertical-align:top }

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

你在看孤独的风景 2024-10-27 21:01:21

添加:

只需在 CSS 中的 FB iFrame 类中 height:63px; 即可:
在此处输入图像描述

Just add:

height:63px; to the class of the FB iFrame in CSS:
enter image description here

北笙凉宸 2024-10-27 21:01:21

要解决默认样式

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

来修复

    .fb-like {
        line-height: 0.7
    }

设置或

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

可以通过在 CSS 中

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文