为 Facebook 点赞按钮提供可变宽度?

发布于 2024-12-09 17:16:16 字数 257 浏览 0 评论 0原文

我想右对齐 Facebook 点赞按钮,这样无论是 0 还是 10,000,000 人喜欢它,它都会与页面的右侧对齐。这可能吗?我到处都找过了,没有结果。

感谢您的帮助!

这就是我们想要做的,但现在我们必须在点赞按钮上设置固定宽度,因此如果点赞计数为 1,则页面未正确对齐,或者如果点赞计数为 250,则页面未正确对齐未正确对齐。

在此处输入图像描述

I'd like to right align the Facebook like button, so that regardless of whether 0 or 10,000,000 people have liked it it lines up with the right side of the page. Is this possible?? I've looked everywhere to no avail.

Thanks for helping!

This is what we're looking to do, but right now we have to set a fixed width on the like button, so if the like count is 1 - the page isn't aligned properly, or if the like count is 250 the page isn't aligned properly.

enter image description here

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

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

发布评论

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

评论(1

与往事干杯 2024-12-16 17:16:16

您可以将 facebook 按钮包裹在 div 内,并将 div 溢出设置隐藏,只是为了确保它不会超出固定宽度。

.mybutton{
    width:50px;
    overflow:hidden;
}

你可以看到这个jsfiddle。

http://jsfiddle.net/62sCG/1/

You can wrap the facebook button inside a div, and set the div overflow hidden, just to make sure that it wont exceed the fixed width.

.mybutton{
    width:50px;
    overflow:hidden;
}

You can see this jsfiddle.

http://jsfiddle.net/62sCG/1/

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