我的身体背景颜色不起作用.. css的路径是正确的。我无法弄清楚为什么......请帮助!
的index.html
<!DOCTYPE html>
<html>
<head>
<title>WELCOME PAGE</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<div id="box1">
<div id="welcome">
<h1>Welcome</h1>
</div>
<div id="logregis">
<a href="login.html"> LOGIN </a> <br>
or <br>
<a href="register.html"> REGISTER </a>
</div>
</div>
</body>
</html>
的style.css
<style>
body{ background-color:#F00;}
</style>
答案 0 :(得分:3)
HTML不属于CSS文件:
<style>
body{ background-color:#F00;}
</style>
应该是:
body{ background-color:#F00;}