我有一个HTML,它会引用CSS文件的样式。但看起来HTML文件无法找到CSS文件。我尝试使用简单的背景颜色,但似乎也没有用。
VOD.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<div>
<table>
<tr>
<td><b>All</b></td>
{% for item in VOD1 %}
<td>ID: {{ item[0] }} <br/> Title: {{ item[1] }}<br/>
<img src="{{ item[2] }}" alt="dummy.jpg"> </img>
</td>
{% endfor %}
</tr>
<tr>
<td><b>Catch Up</b></td>
{% for item in VOD2 %}
<td>ID: {{ item[0] }} <br/> Title: {{ item[1] }}<br/>
<img src="{{ item[2] }}" alt="dummy.jpg"> </img>
</td>
{% endfor %}
</tr>
</table>
</div>
</body>
</html>
我的CSS文件如下。
mystyle.css
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: black;
}
.myStyle{
height: 50px;
width:50px;
}
td{
height: 100px;
width: 100px;
}
h1 {
color: maroon;
margin-left: 40px;
}
</style>
</head>
</html>
有人可以帮助我吗?我对这个HTML和CSS文件没有多少经验。
答案 0 :(得分:5)
你的CSS文件应该包含CSS,只有CSS,只有CSS。它不应该是HTML文档。
除了以下所有内容:
body {
background-color: black;
}
.myStyle{
height: 50px;
width:50px;
}
td{
height: 100px;
width: 100px;
}
h1 {
color: maroon;
margin-left: 40px;
}
答案 1 :(得分:0)
您不必将以下行放在CSS文件中,这是HTML(不是css语言)。
<!DOCTYPE html>
<html>
<head>
<style>
所以 mystyle.css 变成
body {
background-color: black;
}
.myStyle{
height: 50px;
width:50px;
}
td{
height: 100px;
width: 100px;
}
h1 {
color: maroon;
margin-left: 40px;
}
答案 2 :(得分:0)
css文件是一种特殊类型的文件,可用作html的“插入”类型。因为它不是.html文件,所以它不需要html标签,而html标签实际上会使文件无效。相反,只需把
<a href="link.html" class="active">Link</a>
.active {
pointer-events: none;
cursor: default;
}
等。在此处阅读更多内容:http://www.w3schools.com/css/css_howto.asp