-2
問題是指定的css文件沒有用html加載。當我在瀏覽器中打開html文件時,樣式沒有改變。所有文件都在我的電腦上。Html不加載css
HTML:
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" herf="hello.css">
</head>
<body>
<a href="settings.html">Settings</a>
</body>
</html>
hello.css(同一目錄):
body {
width: 1000px;
height: 1000px;
background: red !important;
}
輸出: (或:http://i.imgur.com/9TUccBf.png)
你把HERF代替HREF的:HREF = 「hello.css」 – Keith
真。愚蠢的我,這讓我瘋狂... – Johnny
這個問題似乎是脫離主題,因爲它是關於一個錯字。 – Flexo