html table实现复杂表头的示例代码
导读:收集整理的这篇文章主要介绍了html table实现复杂表头的示例代码,觉得挺不错的,现在分享给大家,也给大家做个参考。 使用htML做复杂的表格。复杂表格一般是用到td的两个属性:rowspan 、colspan属性值。在htm...
收集整理的这篇文章主要介绍了html table实现复杂表头的示例代码,觉得挺不错的,现在分享给大家,也给大家做个参考。 使用htML做复杂的表格。复杂表格一般是用到td的两个属性:rowspan 、colspan属性值。
在html中td> 标签定义 HTML 表格中的标准单元格。
(1)rowspan 属性规定单元格可横跨的行数;
(2)colspan 属性规定单元格可横跨的列数。
html>
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>
效果图:
HTML Table设置无边框、无分割线
无边框
table id="tbl" border=1 width="80%" frame=void >
/table>
frame属性指定了对于边框显示的规则,其中可以选择的设置有如下几项:
- void 设置无边框;
- above 只显示上边框;
- below 只显示下边框;
- vsides 只显示左右边框;
- hsides 只显示上下边框;
- lhs 只显示左边框;
- rhs 只显示右边框。
无分割线
table id="tbl" border=1 width="80%" rules=none >
/table>
rules属性指定了对于分割线显示的规则,”none”表示完全无分割线,另外可以设置”rows”、”cols”,仅从字面意思上看很容易造成误导,这里要注意:rows表明行间无分割线,也就是同一行中的数据没有分割线分割;cols表明列间无分割线,也就是同一列中的数据没有分割线分割。
到此这篇关于html table实现复杂表头的示例代码的文章就介绍到这了,更多相关html table复杂表头内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: html table实现复杂表头的示例代码
本文地址: https://pptw.com/jishu/588472.html
