课程与?相同?

时间:2016-02-14 18:50:27

标签: html css

我有一个问题

如果我提出:

<table>
  <tr>
    <th class="width100px"></th>
  </tr>

  <tr>
    <td></td>
  </tr>
</table>

width100px = width: 100px

<td>是否具有与<th>相同的特征?

1 个答案:

答案 0 :(得分:1)

如果您的意思是使用内联样式,那么是。

看看:

th {
  /*demo styles*/
  background: red;
  height: 100px;
}
.width100px {
  width: 100px
}
<h3>CSS Classes</h3>
<table>
  <tr>
    <th class="width100px"></th>
  </tr>
  <tr>
    <td></td>
  </tr>
</table>
<hr />
<h3>CSS  inline styles</h3>
<table>
  <tr>
    <th style="width:100px"></th>
  </tr>
  <tr>
    <td></td>
  </tr>
</table>
<hr />
<h3>HTML old width tag - deprecated, don't use unless for email purposes</h3>
<table>
  <tr>
    <th width="100"></th>
  </tr>
  <tr>
    <td></td>
  </tr>
</table>