gpt4 book ai didi

html - Rowspan 和 colspan 在表中不正确

转载 作者:行者123 更新时间:2023-11-27 23:53:31 29 4
gpt4 key购买 nike

我已经创建了表格,但它不是我想要的。我正在使用 Bootstrap 。我使用 row-span 和 col-span 创建了表。我创建的几乎相同,但未显示某些行

我附上图片以供引用。 enter image description here

<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<table class ="table table-bordered" >
<tr>
<th> 8</th>
<th >8 </th>
<th> 8</th>
</tr>
<tr>
<td colspan="2"> 8</td>
<td> 8</td>
<td rowspan="2">8</td>
</tr>
<tr>
<td>8</td>
<td>8</td>
</tr>
</table>

最佳答案

请试试这个代码:

<!DOCTYPE html>
<html>
<head>

</head>
<body>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<table class ="table table-bordered" >

<tr>
<th>8</th>
<th>8</th>
<th colspan="2">8</th>
</tr>
<tr>
<td rowspan="2">8</td>
<td rowspan="2">8</td>
<td >8</td>
<td >8</td>
</tr>
<tr>
<td rowspan="2">8</td>
<td rowspan="2">8</td>
</tr>
<tr>
<td rowspan="2">8</td>
<td rowspan="2">8</td>
</tr>
<tr>
<td >8</td>
<td >8</td>
</tr>
</table>


</body>
</head>
</html>

关于html - Rowspan 和 colspan 在表中不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56392995/

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