背景大小不适用于Mozilla

时间:2015-03-13 10:01:48

标签: php html css

我想发送全宽的身体背景图像,我已经用你之前的问题和答案做了这个,但我遇到了mozila浏览器的问题,图像没有设置全宽。 这是我在css文件中编写的代码..

background-image: url("/images/newimages/loginimage.jpg");
background-position: center top;
background-repeat: no-repeat;
background-size: 100% 100%;

这在chorme浏览器上工作正常,但没有在mozila上工作我的代码没有出错。

以下是检查http://officemachine.mobi/login/index.php的链接 在两个浏览器上查看此链接。

2 个答案:

答案 0 :(得分:0)

将以下内容添加到CSS中。应该工作。

html{
    height:100%;
}

答案 1 :(得分:0)

这是因为100%的高度是身体的高度,身体不是那么高。尝试添加:

body { height: 100%; }