0

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 ファイルがあり、2 番目のファイルが読み込まれますが、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 にスクリプトを含めることはできますが、そのように動作する必要はありません :/

現在、このサイトは私の PC でホストされているため、127.0.0.1 としか考えられないため、リンクを提供できません。

編集:ああ....このばかげた質問で申し訳ありませんが、「css」の代わりに「xss」と書きました:| パブロに感謝します。:)

4

1 に答える 1

1

問題は次のとおりです。

<!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>
于 2013-05-30T10:17:22.780 に答える