网页适用于IE,但不适用于Firefox或Chrome

时间:2013-12-05 19:57:05

标签: html google-chrome

我有一个没有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>&nbsp;</p>
   <p align="center">&nbsp;</p>
   <p align="center">test</p>
   <p align="center"></p>
   <p align="center"></p>
   <p align="center">&nbsp;</p>
   </body>
  </html>

1 个答案:

答案 0 :(得分:0)

为什么不使用HTML5 doctype声明?

<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<style type="text/css">
body {
    background-color: #CC9;
 }
</style>
</head>