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

2022/1/18 23:35:42

本文主要是介绍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>定义表头



这篇关于HTML---table表格表头<th>的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程