其他分享
首页 > 其他分享> > HTML---table表格表头<th>

HTML---table表格表头<th>

作者:互联网

<h4>表头:</h4>
    <table border="1">
        <tr>
            <th>姓名</th>
            <th>身份证</th>
            <th>电话</th>
        </tr>
        <tr>
            <td>王五</td>
            <td>00000000000000</td>
            <td>11111111111</td>
        </tr>
     </table>
        
<h4>垂直的表头:</h4>
    <table border="1">
        <tr>
            <th>姓名</th>
            <td>张三</td>
        </tr>
        <tr>
            <th>身份证</th>
            <td>00011111111111</td>
        </tr>
        <tr>
            <th>电话</th>
            <td>000000000</td>
        </tr>
    </table>

 

注释:

          <border>定义表框

          <th>定义表头

标签:11111111111,身份证,表头,---,姓名,王五,table,定义
来源: https://www.cnblogs.com/xfzero/p/15820278.html