English 中文(简体)
如何决定何时使用<th>或何时使用? 纽约总部
原标题:How to decide when to use <th> or when not? in <table>

和本法典一样

<table id="presentationsContainer">
  <tr>
    <td class="main" width="60%">Presentation October 2009</td>
    <td class="dl" width="20%">Download pdf</td>
    <td class="dl" width="20%">Download ppt</td>
  </tr>
  <tr>
    <td class="main" width="60%">Presentation October 2009</td>
    <td class="dl" width="20%">Download pdf</td>
    <td class="dl" width="20%">Download ppt</td>
  </tr>
  <tr>
    <td class="main" width="60%">Presentation October 2009</td>
    <td class="dl" width="20%">Download pdf</td>
    <td class="dl" width="20%">Download ppt</td>
  </tr>
</table>
问题回答

当你再谈论主子数据时,应使用表头标。 如果你在桌旁有一行解释其余各行的内容,你应具体说明哪怕是哪里。 看来,由于所有信息均已列入表格,你的准则可能不需要。 类似情况是适当利用th。

<table id="presentationsContainer">
  <tr>
    <th>Presentation</th>
    <th>PDF</th>
    <th>PPT</th>
  </tr>
  <tr>
    <td class="main" width="60%">October 2009</td>
    <td class="dl" width="20%">Download</td>
    <td class="dl" width="20%">Download</td>
  </tr>
  <tr>
    <td class="main" width="60%">October 2009</td>
    <td class="dl" width="20%">Download</td>
    <td class="dl" width="20%">Download</td>
  </tr>
  <tr>
    <td class="main" width="60%">October 2009</td>
    <td class="dl" width="20%">Download</td>
    <td class="dl" width="20%">Download</td>
  </tr>
</table>

如果我误解了问题,请问。 没有什么解释

<代码><th> vs <td>完全属人管辖,<th>适用于栏目或行长,<td> 一般来说,如果你在一栏或行文中有一个电池组,而其他囚室的组群或标识是个囚室,则使用<代码><th>。

在你的简单例子中,我完全删除了班级的使用,而只是根据标签类型去做。 这些班子是多余的,只是 se不 se地增加,ty笑他们没有必要:

  <tr>
    <th width="60%">Presentation October 2009</th>
    <td width="20%">Download pdf</td>
    <td width="20%">Download ppt</td>
  </tr>

位数为位数。

如果你希望2009年10月成为会议桌旁,那么,超文本将是:

<table id="presentationsContainer">
  <tr>
    <th class="main" width="60%">Presentation October 2009</th>
    <td class="dl" width="20%">Download pdf</td>
    <td class="dl" width="20%">Download ppt</td>
  </tr>
  <tr>
    <th class="main" width="60%">Presentation October 2009</th>
    <td class="dl" width="20%">Download pdf</td>
    <td class="dl" width="20%">Download ppt</td>
  </tr>
  <tr>
    <th class="main" width="60%">Presentation October 2009</th>
    <td class="dl" width="20%">Download pdf</td>
    <td class="dl" width="20%">Download ppt</td>
  </tr>
</table>

您还可以选择哪类和 w子,使html简单,在表格上采用风格,并利用CSS的挑选者做缝 the:

#presentationsContainer table tr th {
    width: 60%;
}

#presentationsContainer table tr td {
    width: 20%;
}

这再次成为内容与风格的良好范例。 表格栏目的负责人应使用<代码><th>,而简单的<td> tags应用于表形表头的电池。

这也是为什么你通常在一张桌子上找到一个行文<代码><th>标签,与多个<代码><td>标签。

举例来说,<代码><th>tags根本就没有用途,因为你没有一行作为头行,因此你的代码是好的。





相关问题
Is this syntatically valid for div?

<div class= clear ></div> /*which comes out to be below one in FF (seen via firebug) */ <div class= clear /> /*is this the last empty div declaration is semantically valid ? */

How to apply pagination in IFrame

I have an IFrame with a Table enclosed within it. I want to display 15 rows of a table and than a Next button must be there to move forward. How to apply pagination for IFrame?

Scala and HTML parsing

How do you load an HTML DOM document into Scala? The XML singleton had errors when trying to load the xmlns tags. import java.net._ import java.io._ import scala.xml._ object NetParse { import ...

热门标签