カスケードスタイルシートの使用方法を学びたいと思っています。外部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; }
このすべてが正常に動作しますが、次のように私は少しテストhtmlページを持っています。しかし、私のチームの他のメンバーによって作成されたスタイルシートを見ると、コンテンツをブラケットするスタイルタグがあります。
<style type="text/css">
body{ background-color: gray;}
p { color: blue; }
h3{ color: white; }
</style>
しかし、私はCSSを無効にスタイルタグを置くとき:だから、私はCSSファイルが実際にこのようになるはずだと思います。私は間違って何をしていますか?
ありがとうございました。
Ellliott