gpt4 book ai didi

使用 rowspan colspan 的 html 表格

转载 作者:行者123 更新时间:2023-11-28 01:04:21 30 4
gpt4 key购买 nike

我正在尝试创建一个如下所示的表格..

enter image description here

table, td {
border-collapse: collapse;
border: 2px solid blue;
}
<table>
<tr>
<td rowspan='6' colspan='6'>&nbsp;</td>
<td rowspan='4'>&nbsp;</td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>

在我的代码中,空行是否导致它错误打印表格?你能说出为什么浏览器渲染不正确吗?还是逻辑错误?

最佳答案

您需要更新有关单元格尺寸的 CSS。

这是您可以执行的操作。

table,
td {
border-collapse: collapse;
border: 2px solid blue;
text-align: center;
}
table {
width: 100%;
height: 350px;
}
td {
width: 50px;
height: 50px;
}
<table>
<tr>
<td rowspan='6' colspan='6'>6X6</td>
<td rowspan='4'>4X1</td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
<td>1
</td>
</tr>
<tr>
<td>2
</td>
</tr>

<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>

关于使用 rowspan colspan 的 html 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40582853/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com