在我的 eclipse javascript项目中,我将{strong> test.html 和 test.css 文件放在ProjectName\WebContent\
direcotry下。
我的 test.html :
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>UI TEST</title>
</head>
<body>
<div id="header">header</div>
<div id="container">
<h1>content</h1>
<p>My test.</p>
<p class="last">...</p>
</div>
<div id="sidebar">
<h1>sidebar</h1>
<ul>
<li>link one</li>
<li>link two</li>
</ul>
</div>
<div id="footer">footer</div>
</body>
</html>
我的 test.css :
@CHARSET "ISO-8859-1";
#header {
background: #d7dabd;
}
#container {
width: 100%;
float: left;
margin-right: -200px;
}
#sidebar {
width: 200px;
float: right;
}
#footer {
background: #d7dabd;
clear: both;
}
但是,CSS对我的页面没有任何影响,原因是什么?
答案 0 :(得分:6)
您必须在HTML文件中包含CSS才能使其正常工作。
在<head>
和</head>
之间添加以下内容:
<link rel="stylesheet" type="text/css" href="test.css" />
答案 1 :(得分:0)
您需要在test.html文件中包含css文件,供浏览器阅读。
...
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" type="text/css" href="test.css">
<title>UI TEST</title>
</head>
...