html table(2)表格标签

来源:互联网 发布:淘宝买家查号131458 编辑:程序博客网 时间:2024/05/18 18:00
<!DOCTYPE html>
<html>
  <head>
    <title>table1.html</title>
    
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=GBK">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

  </head>
  <body>
      <!-- colspan为该单元格占几列 rowspan为占几行,使用该属性的时候注意th和td的使用-->
    <!-- <table width=40% border=1 bordercolor="yellow">
        <tbody>
            <tr>
                <th colspan="2">个人信息表</td>
            </tr>
            <tr>
                <th>张三</td>
                <td>18</td>
            </tr>
        </tbody>
    </table> -->
    <table width=200 border=1 bordercolor="yellow" cellspacing=2 cellpadding=2>
        <tbody>
            <tr>
                <td rowspan="2">个人信息表</td>
                <td>张三</td>
            </tr>
            <tr>
                <td>18</td>
            </tr>
        </tbody>
    </table>
  </body>
</html>


原创粉丝点击