gpt4 book ai didi

css - Firefox 不会加载 CSS

转载 作者:太空宇宙 更新时间:2023-11-04 14:57:33 25 4
gpt4 key购买 nike

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”:|感谢巴勃罗。 :)

最佳答案

问题是:

<!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>

应该是这样的:

<!DOCTYPE html>
<html>
<head>
<title>Title here ;)</title>
<link type="text/css" rel="stylesheet" href="/css/main.css" />
<script type="text/javascript" src="js/jquery.js"></script>

关于css - Firefox 不会加载 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16833417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com