<p<em强调</em 的文本通常用斜体显示,然而, <strong特别强调</strong 的文本通常以粗体显示。</p强调的文本通常用斜体显示, 然而,特别强调的文本通常以粗体显示。
表格
XHTML中的表格不应用来布局。然而如果是为了标记列表的数据,就应该使用表格了。为了使数据表格有更强的访问性,了解和使用各种构造表格的组件就很重要了。比如表格标题 (<th)、摘要(summary 属性)和首部说明 ( <caption标签).
例如:
<table class="举例" summary="1999年到2003年,列表显示中国的平均人口增长率。"
<caption中国的年均人口的增长, 1999-2003</caption
<thead
<tr
<td </td
<th scope="col"1999</th
<th scope="col"2000</th
<th scope="col"2001</th
<th scope="col"2002</th
<th scope="col"2003</th
</tr
</thead
<tbody
<tr
<th人口</th
<td scope="row"8 861 426</td
<td scope="row"8 882 792</td
<td scope="row"8 909 128</td
<td scope="row"8 940 788</td
<td scope="row"8 975 670</td
</tr
<tr
<th增长</th
<td scope="row"7 104</td
<td scope="row"21 366</td
<td scope="row"26 368</td
<td scope="row"31 884</td
<td scope="row"34 882</td
</tr
</tbody
</table
想了解更多的关于表格及其使用的细节, 请参阅Tables in HTML documents 和 HTML Techniques for Web Content Accessibility Guidelines 1.0.
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/html/)相关文章:
SimpleQuiz
一个很好的资源,告诉您如何用语义化的方法来标记