我一定很累。 CSS不會導入到HTML中。所有這一切顯示出來的是:測試測試測試(在不同線路)此外,在電網CSS所有有是920.gs:CSS不會導入HTML
<!DOCTYPE html>
<html>
<head>
<title>Some title</title>
<link rel="stylesheet" type="text/css" href="/css/styles.css" />
</head>
<body>
<div class="container_12" id="content">
<div class="grid_3" id="leftside">
<h1>Test</h1>
</div>
<div class="grid_6">
<h1>Test</h1>
</div>
<div class="grid_3" id="rightside">
<h1>Test</h1>
</div>
</div>
</body>
</html>
Annnd的CSS:
@import url("http://fonts.googleapis.com/css?family=Days+One&effect=font-effect-fire- animation");
@import url("css/grid.css"")
body {
background-attachment:fixed;
background-repeat:no-repeat;
background-color:#7FA8FF;
background-position:top;
background-image:url("../images/background.png");
text-align: center;
font-family: 'Days One', sans-serif;
}
可能是因爲你在相對路徑開始時用「/」來引用文件,這會將它變成絕對路徑。它可能正在搜索你的服務器根目錄。檢查Chrome開發工具是否有失敗的文件加載? – Taz