-4
header
的CSS規則不適用於Chrome或Firefox,但section
確實存在,並且奇怪的是,兩者都適用於JSFiddle。CSS不適用於div
HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header">
<h1>Test</h1>
</div>
<div id="section">
<p>test</p>
</div>
</body>
</html>
的style.css:
<style>
#header {
background-color: #f0fff0;
color: #262626;
text-align: center;
}
#section {
text-align: center;
}
</style>
你在外部CSS文件中是否有'