在Firefox中没有显示

时间:2012-08-15 17:55:08

标签: html css cross-browser

http://client.henrybuilt.com/login.php

由于某种原因,页面上没有显示任何内容。

在Chrome中工作得很好,但不知道Firefox上发生了什么。

由于

3 个答案:

答案 0 :(得分:0)

您的body标签上设置了display:none属性。从styles/main.css文件中的此块中删除它:

body{
    margin:0;
    padding:0;
    background-color:#FCFCFC;
    display:none;
}

答案 1 :(得分:0)

Firefox抛出此警告

The character encoding of the HTML document was not declared. The document will render
with garbled text in some browser configurations if the document contains characters from
outside the US-ASCII range. The character encoding of the page must to be declared in the 
document or in the transfer protocol.

这可能是一个原因。

我附上了查看源代码的样子。 html标记以红色突出显示,指出存在错误。

Error

答案 2 :(得分:0)

你可以试试这个而不是fadeIn ..

$('body').css('display','block'); 
相关问题