完整的背景图像不显示全高?

时间:2013-05-13 18:48:05

标签: css facebook css3 facebook-apps

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

有没有办法让它可以随时看到完整的图像?

我将把我的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;
}

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

1 个答案:

答案 0 :(得分:3)

您需要确保bodyhtml100%,例如

html, body {
    height:100%;
}