• html -table 实现复杂表头


    转自:https://blog.csdn.net/hht006158/article/details/79913765

    使用html做复杂的表格。复杂表格一般是用到td的两个属性:rowspan 、colspan属性值。

    在html中<td> 标签定义 HTML 表格中的标准单元格。

      (1)rowspan 属性规定单元格可横跨的行数;

      (2)colspan 属性规定单元格可横跨的列数。

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    <html xmlns="http://www.w3.org/1999/xhtml">   
    <head>   
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />   
        <title>多表头表格</title>   
    </head>   
    <body>   
    <table id="tab" cellpadding="1" cellspacing="1" border="1">   
    <tr>   
        <th rowspan="2">序号</th>
        <th rowspan="2">监测位置</th>
        <th rowspan="2">供电通路</th>
        <th rowspan="2">供电电压</th>
        <th rowspan="2">负载电流</th>
        <th rowspan="2">雷击次数</th>
        <th rowspan="2">最近一次雷击时间</th>
        <th colspan="2">后备保护空开状态</th>
        <th rowspan="2">SPD损害数量</th>   
        <th colspan="2">输出空开状态</th>
    </tr>   
    <tr>   
        <th>B级</th> 
        <th>C级</th>
        <th>1路</th> 
        <th>2路</th>     
    </tr> 
    <tr> <th rowspan="4">1</th>
    </tr>  
    <tr>   
        <th>1</th>   
        <th>78</th>   
        <th>96</th>   
        <th>67</th>   
        <th>98</th>   
        <th>88</th>   
        <th>75</th>   
        <th>94</th>   
        <th>69</th>   
        <th>23 </th>   
        <th>33 </th> 
    </tr> 
    <tr>
        <th colspan="2">提示建议</th>   
        <th colspan="2">智能防雷箱状态</th>   
        <th colspan="2">防雷箱型号</th>   
        <th colspan="3">防雷箱序列号</th>   
        <th colspan="2">防雷箱版本</th>
    </tr>  
    <tr>   
        <th colspan="2">建议整机按规程检测</th>   
        <th colspan="2">在线</th>   
        <th colspan="2">2018041201-035PF</th>   
        <th colspan="3">2018041201-256</th>   
        <th colspan="2">V1.0.0</th>   
    </tr>    
    </table>   
    </body>   
    </html>

    效果:

  • 相关阅读:
    javascript 编码规范
    javascript 减少全部变量
    轮播图 jquery
    SVN MAC
    php excel
    php email
    查看网站后台
    linux 下载文件
    第6周小组作业:软件测试和评估
    第4周小组作业:WordCount优化
  • 原文地址:https://www.cnblogs.com/wangdongying/p/13274870.html
Copyright © 2020-2023  润新知