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>
效果:
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?