我有一个没有CSS的基本页面。代码中没有错误,因为我通过W3c验证器运行它。页面在IE中工作正常,但没有Firefox或Chrome。它只显示代码而不是页面。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Test</title>
<style type="text/css">
body {
background-color: #CC9;
}
</style>
</head>
<body>
<p> </p>
<p align="center"> </p>
<p align="center">test</p>
<p align="center"></p>
<p align="center"></p>
<p align="center"> </p>
</body>
</html>
答案 0 :(得分:0)
为什么不使用HTML5 doctype声明?
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<style type="text/css">
body {
background-color: #CC9;
}
</style>
</head>