firefox不显示html文件的样式

时间:2015-12-30 17:29:47

标签: html css

u''

The output file

我在ubuntu 12.04中使用mozilla firefox,使用apache web server

2 个答案:

答案 0 :(得分:2)

您在类型属性周围使用这些代替这些"。 您可以使用"',但不能使用

另外,如果你是新手,请尽可能将你的css放在一个额外的文件中;)

编辑:刚看到别人比我更快地发布了答案

答案 1 :(得分:0)

您错误地使用了“type”属性。用正确的引号替换引号或完全删除属性。这将有效:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>A CSS Exercise</title>
<style>
div {
font-weight: bold;
}
span {
font-style: italic;
}
</style>
</head>
<body>
<div>This is my web page.</div>
<div>This is the <span>nicest</span> page I've made yet.</div>
<div>Here is some text on my page.</div>
</body>
</html>

您可能需要查看http://www.w3schools.com/tags/tag_style.asp

上的一些示例