首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

奥秘的表格标签

2012-10-07 
神秘的表格标签!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/

神秘的表格标签

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body><table summary="This is the summary text for this table."  border="0" cellspacing="0" cellpadding="0">  <caption>  <em>公司报表</em>  </caption>  <thead>    <tr>      <th>商品1</th>      <th>商品2</th>    </tr>  </thead>  <tfoot>    <tr>      <td colspan="2">(注:created by macrotea)</td>    </tr>  </tfoot>  <tbody>    <tr>      <td>TD One</td>      <td>TD Two</td>    </tr>    <tr>      <td>TD One</td>      <td>TD Two</td>    </tr>    <tr>      <td>TD One</td>      <td>TD Two</td>    </tr>    <tr>      <td>TD One</td>      <td>TD Two</td>    </tr>  </tbody></table></body></html>

?

?

<thead>
<tfoot>
<tbody>

热点排行