這有什麼錯我的CSS:文本不居中因爲我希望CSS的text-align不起作用
看到https://jsfiddle.net/L5bgrg8d/
<html>
<head>
<title>
</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div id="header">
My header
</div>
<div id="content">
<div id="nav"></div>
</div>
<div id="footer"></div>
</div>
</body>
</html>
的style.css
#header {
background-color: teal;
color: white
text-align: center;
}
忘了分號顏色後':white' –