如何对齐 Facebook 和 Tweet 按钮?
我们主页上的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需添加以下 CSS:
.twitter-share-button { Vertical-align:top }
。Simply add this CSS:
.twitter-share-button { vertical-align:top }
.添加:
只需在 CSS 中的 FB iFrame 类中
height:63px;
即可:Just add:
height:63px;
to the class of the FB iFrame in CSS:要解决默认样式
来修复
设置或
可以通过在 CSS 中
To solve the default style
can be fixed by seting
or
in your CSS