2013-07-24 92 views
-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; 
} 

輸出: a busy cat (或:http://i.imgur.com/9TUccBf.png

+5

你把HERF代替HREF的:HREF = 「hello.css」 – Keith

+0

真。愚蠢的我,這讓我瘋狂... – Johnny

+0

這個問題似乎是脫離主題,因爲它是關於一個錯字。 – Flexo

回答

4

在你鏈接標籤內頭部分,請修改herf標籤作爲HREF

<head> 
    <link rel="stylesheet" type="text/css" href="hello.css"> 
</head> 
+4

請解釋票!這個答案似乎是正確的。 – showdev