gpt4 book ai didi

html - 表格行间距 - Bootstrap

转载 作者:行者123 更新时间:2023-11-28 13:54:13 26 4
gpt4 key购买 nike

我有一张用 bootstrap 开发的表格。如何在每个表格行之间放置一个间距?

我想要的是这样的:

Image

我的代码

codeply

HTML

<table class="table table-borderless">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
</tbody>
</table>

最佳答案

您可以添加以下 CSS。

.table {
border-spacing:35px;
border-collapse: separate;
}

.table {
border-spacing:35px;
border-collapse: separate;
}
<table class="table table-borderless">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
</tbody>
</table>

关于html - 表格行间距 - Bootstrap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59029342/

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