0

好的,所以我正在为 facebook 开发一个应用程序,并且我正在使用一个可以调整大小的文本区域。当我启动应用程序时,除非我拉下文本区域,否则无法看到我的整个背景图像。

有什么办法可以让你随时都能看到完整的图像?

我将包括我的 CSS 作为我的背景。

我一直在看谷歌,但它们大多是带有滚动条的背景图片。

.fbbody
{
FB.Canvas.setSize({ width: 2400, height: 1200});
font-family: "lucida grande" ,tahoma,verdana,arial,sans-serif;
font-size: 11px;
color: #333333;
background: url(images/background.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

如果有人可以提供帮助,将不胜感激

4

1 回答 1

3

你需要确保你的bodyhtml100%

html, body {
    height:100%;
}
于 2013-05-13T18:50:50.043 回答