Facebook:页面选项卡的新 IFrame 画布宽度低于 520 像素?
我正在为 Facebook 页面开发一个应用程序,和往常一样,我今天偶然发现了一个奇怪的错误。我知道选项卡宽度应该为 520px,但由于某种原因,在使用 IFrame 画布而不是旧 FBML 的这些新页面上并没有发生这种情况。
以下是记录此错误的屏幕截图:
如您所见,内容已被裁剪(我使用了 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 Firebug 即可更好地检查这一点。确实是 520px:
而且我刚刚访问了您在 Facebook 上的页面,看来您没有重置 页面的样式。试试这个:
而不只是
overflow:hidden;
。Just use Firebug to better inspect this. It's indeed 520px:
AND I've just visited your page on Facebook, it seems that you didn't reset the styling for your page. try this:
instead of just
overflow: hidden;
.其实你是对的。宽度限制小于 520 像素。
你必须使用脚本来解决这个问题。此外,overflow:hidden 技巧在
html
和body
标记中也是必要的。脸书鲁尔兹。
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
andbody
tags.Facebook Rulz.