为什么“pre”的“bgcolor”没有显示?

时间:2015-09-14 12:26:19

标签: html

我制作HTML报告 - 无法看到黄色BG颜色用于报告。为什么。 Html的代码类似于

<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<font name="Courier New" size="3" color="#000">
<pre><code>
<font color="#FF0000" bgcolor="#FFFF00" >1</font>
</code></pre>
</font>
</body>
</html>

你在这里看到黄色bg为“1”。 我使用Firefox。

1 个答案:

答案 0 :(得分:1)

您使用的是非常过时的HTML表示法。正确的标记是:

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style>
      body {
        font-family: "Courier New", sans-serif;
        font-size: 13px;
        color: #000;
      }
      span {
       background-color: #FFFF00;
      }
    </style>
  </head>
  <body>
    Black text <span>with yellow background</span>
  </body>
</html>