Facebook:页面选项卡的新 IFrame 画布宽度低于 520 像素?

发布于 2024-10-18 13:20:29 字数 274 浏览 2 评论 0原文

我正在为 Facebook 页面开发一个应用程序,和往常一样,我今天偶然发现了一个奇怪的错误。我知道选项卡宽度应该为 520px,但由于某种原因,在使用 IFrame 画布而不是旧 FBML 的这些新页面上并没有发生这种情况。

以下是记录此错误的屏幕截图: Facebook bug

如您所见,内容已被裁剪(我使用了 Overflow: hide; 来隐藏滚动条)总宽度为 504px。知道如何解决吗?

I'm developing an app for Facebook pages and, as usual, I've stumbled upon a strange bug today. I know that tab width is supposed to be 520px, but for some reason this is not happening on these new pages which are using IFrame canvas instead of the old FBML.

Here is a screenshot documenting this bug: Facebook bug

As you can see the content is cropped (I used overflow: hidden; to hide the scrollbars) at a total width of 504px. Any idea about how to solve it?

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

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

发布评论

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

评论(2

2024-10-25 13:20:29

只需使用 Firebug 即可更好地检查这一点。确实是 520px:
在此处输入图像描述

而且我刚刚访问了您在 Facebook 上的页面,看来您没有重置 页面的样式。试试这个:

body {
    margin: 0;
    overflow: hidden;
    padding: 0;
}

而不只是overflow:hidden;

Just use Firebug to better inspect this. It's indeed 520px:
enter image description here

AND I've just visited your page on Facebook, it seems that you didn't reset the styling for your page. try this:

body {
    margin: 0;
    overflow: hidden;
    padding: 0;
}

instead of just overflow: hidden;.

北音执念 2024-10-25 13:20:29

其实你是对的。宽度限制小于 520 像素。

你必须使用脚本来解决这个问题。此外,overflow:hidden 技巧在 htmlbody 标记中也是必要的。

脸书鲁尔兹。

Actually you are correct. The width limit is less than 520px.

You have to use a script to solve this problem. Also the overflow:hidden trick is necessary in the html and body tags.

Facebook Rulz.

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