日期:2014-05-17  浏览次数:20603 次

html标签添加
1、表格标签thead、tfoot、tbody
   <table width="100%" border="1px" cellpadding="5" cellspacing="0">
      <caption><b>世界主要国家人口与面积</b></caption>
         <thead style="background-color:#CCC">
            <tr><th>国家</th><th>人口</th><th>国土面积(平方公里)</th></tr>
         </thead>
         <tfoot style="background-color:#EEE">
            <tr><td colspan="3" align="right">以上数据来自互联网</td></tr>
         </tfoot>
         <tbody>
            <tr><td>中国</td><td>129988万(2004)</td><td>约960万</td></tr>
            <tr><td>美国</td><td>30000万(2006.10.17)</td><td>9629091</td></tr>
            <tr><td>英国</td><td>6020万(2005.6)</td><td>24.36万</td></tr>
            <tr><td>法国</td><td>6339.21万(2007.1.1)</td><td>551602</td></tr>
            <tr><td>德国</td><td>8231万(2006)</td><td>357020.22</td></tr>   
         </tbody>   
    </table>

2、div与其它块级元素(<p> <h1> <ul> <li>)的区别在于<p> <h1> <ul> <li>还具有HTML的语
    义。