Backgroud css不在mozilla工作

时间:2016-02-27 08:09:45

标签: php html css

我目前正在开发一个在samgatha.org上托管的网站。 在mozilla中打开时,正文背景样式不起作用。 另外我注意到当我包含doctype标签时,背景也会在chrome中失败。

该网站位于samgatha.org。

body{
 overflow:hidden;
 margin:0 auto;
 background-image: url('/assets/bgm.png');
 background-size: 100% 100%;
 background-position: center;
 background-repeat: no-repeat;
 width:100%;
}

这是CSS,我可以根据要求添加其他代码。

1 个答案:

答案 0 :(得分:0)

body需要FF的高度才能生效。

body{
 overflow:hidden;
 margin:0 auto;
 background-image: url('/assets/bgm.png');
 background-size: 100% 100%;
 background-position: center;
 background-repeat: no-repeat;
 width:100%;
 height:100%; /* add this */
}