如何更改 HTML table 中文本的颜色?

How can I change the color of text in HTML table?

我需要在学校做一个项目,但我们必须以身作则。如何更改 table 中的文本颜色?

我已经尝试了很多东西,但它们只适用于 CSS 或 HTML5。

<center><table bgcolor="black" color="yellow" border =2 cell pading=30 cell spacing=10  >

您可以为您的 table 设置样式:

table {
color: yellow;
background-color: black;
}

table td, th {
padding: 30px;
border: 1px solid white;
}
<table>
<tbody>
<tr>
    <th>Name</th>
  </tr>
  <tr>
    <td>Name 1</td>
  </tr>
  <tr>
    <td>Name 2</td>
  </tr> 
</tbody>

</table>

你这样试试:

<table style="color: yellow;" bgcolor="black">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td> 
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>

This is good to know that center tag obsoleted.

对于普通的 HTML,您将使用旧的且已弃用的标签 <font>,因为您使用的 <center> 也已过时,但没有 CSS 也没有 HTML5 ...

这是它的样子:

<center>
  <table bgcolor="black" color="yellow" border =2 cell pading=30 cell spacing=10  >
    <tr>
      <td>
        <span>
          <font color="yellow"> Testing</font>
        </span>
      </td>
    </tr>
  </table>
</center>