gpt4 book ai didi

html - 停止 Bootstrap 表格拉伸(stretch)到全屏宽度并向单元格添加额外空间

转载 作者:行者123 更新时间:2023-12-05 04:58:58 25 4
gpt4 key购买 nike

我有一个适合 600 像素屏幕的表格。当屏幕尺寸大于 600 像素时,表格会增长以填满屏幕,并在每个单元格的右侧为每列提供大量额外间距。

我如何移除此阻止表格增长并移除多余的不需要的空间,以便下一列从上一列的最大单元格的末尾开始?

<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> -->

</head>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Stat</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Highest Money Reached</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>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>

代码也在这个JsFiddle

最佳答案

您正在使用 Bootstrap 类,并且 Bootstrap .table 将表格的宽度设置为 width:100%;。您可以从表格 HTML 中删除 table 类,这会影响您的 - 但它也会影响某些样式。

相反,为了防止您的表格拉伸(stretch)到全屏宽度(除非需要),您只需将以下内容添加到您的 CSS 中:

table.table { width:auto; }

只要确保它包含在您的 Bootstrap CSS 之后,并且不要忘记在您的 CSS 选择器中包含 .table 以覆盖 Bootstrap 类。

工作示例:

table.table { width:auto;}
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

</head>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Stat</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Highest Money Reached</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>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>

关于html - 停止 Bootstrap 表格拉伸(stretch)到全屏宽度并向单元格添加额外空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63715287/

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