<!DOCTYPE html>
<html>
<head>
<title></title>
<Style type="text/CSS">
h1{
Colour:red;
}
</Style>
</head>
<body>
<h1></h1>
</body>
</html>
我无法弄清楚哪里出了问题?一切似乎都很好。
下面的代码有效:
<!DOCTYPE html>
<html>
<head>
<title></title>
<Style type="text/CSS">
h1{
Color:red;
}
</Style>
</head>
<body>
<h1>Test</h1>
</body>
</html>