我想學習如何使用Cascadding樣式表。我有一個小的測試html頁面如下:需要外部CSS參考幫助
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/test.css" />
</head>
<body>
<h3> A White Header </h3>
<p> This paragraph has a blue font.
The background color of this page is gray because
we changed it with CSS! </p>
<INPUT TYPE=text NAME="userID" id="userID" Size=20 >
</body>
和外部CSS文件看起來像這樣:
body{ background-color: gray;}
p { color: blue; }
h3{ color: white; }
這一切工作正常。但是當我查看由我的團隊的其他成員創建的樣式表時,他們的樣式標籤包含了內容。所以它使我認爲CSS文件應該看起來像這樣:
<style type="text/css">
body{ background-color: gray;}
p { color: blue; }
h3{ color: white; }
</style>
但是,當我把樣式標籤禁用CSS。我究竟做錯了什麼?
謝謝你的幫助。
Ellliott