html table 的标准写法【例子】

来源:互联网 发布:java 线程池维护 编辑:程序博客网 时间:2024/05/16 04:27
<div id="itsthetable">
  <table summary="Submitted table designs">
   <caption>Table designs</caption>
   <thead>
    <tr>
     <th scope="col">Design Name</th>
     <th scope="col">Author</th>
     <th scope="col">Country</th>
     <th scope="col">Comment</th>
     <th scope="col">Download</th>
    </tr>
   </thead> 
   <tfoot>
    <tr>
     <th scope="row">Total</th>
     <td colspan="4">98 designs</td>
    </tr>
   </tfoot>
   <tbody>
        <tr >
     <th scope="row" id="r97"><a href="index.php?css=97#r97">TagBox</a></th>
     <td><a href="#">TagBox</a></td>
     <td>Deutschland</td>
     <td>Table design based on the fresh TagBox style.</td>
     <td><a href="#" title="Download the TagBox CSS file">Download</a></td>
    </tr>
        <tr class="odd">
     <th scope="row" id="r96"><a href="index.php?css=96#r96">Maniac Merchants</a></th>
     <td><a href="# Willberg</a></td>
     <td>Germany</td>
     <td>A Georgia headline with a green-blue body.</td>
     <td><a href="#" title="Download the Maniac Merchants CSS file">Download</a></td>
    </tr>
        <tr >
     <th scope="row" id="r95"><a href="index.php?css=95#r95">Acuity Design Style</a></th>
     <td><a href="#">Acuity Internet Marketing</a></td>
     <td>Brazil</td>
     <td>Black Style, with smooth grey and green elements.</td>
     <td><a href="#" title="Download the Acuity Design Style CSS file">Download</a></td>
    </tr>
        <tr class="odd">
     <th scope="row" id="r94"><a href="index.php?css=94#r94">Aqua</a></th>
     <td><a href="#">Matthias Richter</a></td>
     <td>Germany</td>
     <td>Have fun!</td>
     <td><a href="#" title="Download the Aqua CSS file">Download</a></td>
    </tr>
        <tr >
     <th scope="row" id="r93"><a href="index.php?css=93#r93">Smooth Taste</a></th>
     <td><a href="http://www.yaway.de">Thomas Opp</a></td>
     <td>Germany</td>
     <td>Smooth style with my favourite colours. Enjoy!</td>
     <td><a href="http://www.templatestyler.de/styles/css/smoothtaste.css" title="Download the Smooth Taste CSS file">Download</a></td>
    </tr>
   </tbody>  
  </table>
 
</div> 
原创粉丝点击