Firefox 不会加载我的 CSS :/ 这就是我包含它的方式:
<!DOCTYPE html>
<html>
<head>
<title>Title here ;)</title>
<link type="text/xss" rel="stylesheet" href="/css/main.css" />
<script type="text/javascript" src="js/jquery.js"></script>
我的网站有 2 个 CSS 文件,它加载了第二个文件,但没有加载 main.css ......这是 main.css 的样子:
body
{
background-color:#6F6B6B;
}
hr
{
color:lime;
}
a
{
text-decoration:none;
color:#A3F0FF;
}
a:hover
{
color:#2EADC5;
}
.content
{
margin-left:auto;
margin-right:auto;
width:85%;
color:#ccc;
}
.logo
{
margin-left:25px;
}
.navi
{
margin: auto auto;
float:right;
display:inline;
}
.slogan
{
display:inline;
margin-left:25px;
}
.error
{
background: #FE9A2E;
color: #FF0000;
border-top: 2px solid #DF0101;
border-bottom: 2px solid #DF0101;
text-align: center;
padding: 5px 20px;
font-size: 13px;
margin-bottom: 15px;
}
.success
{
background: #A9F5A9;
color: #01DF01;
border-top: 2px solid #2EFE2E;
border-bottom: 2px solid #2EFE2E;
text-align: center;
padding: 5px 20px;
font-size: 13px;
margin-bottom: 15px;
}
.ref
{
width: 75%;
margin: 0 auto;
}
它在 Chrome 中完美运行,但在 Firefox 中无法运行 - 有人可以解释一下为什么吗?
注意:它甚至不会在 Firefox 中加载。我可以使用 Inspect Element 将脚本包含在 Firefox 中,但这不是它应该如何工作的:/
该网站目前托管在我的电脑上,所以我无法提供链接,因为它只能通过 127.0.0.1 访问
编辑:哦....对不起这个愚蠢的问题,我写了“xss”而不是“css”:| 感谢巴勃罗。:)