gpt4 book ai didi

html - 想要一个 html 表格与另一个表格宽度相同

转载 作者:行者123 更新时间:2023-11-28 00:42:15 25 4
gpt4 key购买 nike

考虑这个 HTML 文件:

<!DOCTYPE html>
<html>
<head>
<title>Two tables before</title>
<meta charset="utf-8">
<style>

table
{
font-family: monospace;
font-size: 15pt;
border: 1px solid #000;
border-collapse: collapse;
margin-top: none;
margin-bottom: none;
}

td, th { border-left: 1px solid #000; }
#bottom-table { caption-side: bottom; }

</style>
</head>

<body>

<table>
<caption>Before: top table caption</caption>
<tbody>
<tr>
<td>This is a row in the top table which should be about this long</td>
</tr>
</tbody>
</table>

<table id="bottom-table">
<caption>Before: bottom table caption</caption>
<tbody>
<tr>
<td>This is a row in the bottom table</td>
<td>widen this</td>
</tr>
</tbody>
</table>

</body>
</html>

此文件在 Chrome 中呈现如下:

two tables not same width

请注意,这两个表是相邻的,没有空格分隔它们。这是什么是想要的。另请注意,表格的宽度不同。这不想要。相反,希望第二个 td 的宽度在扩展底部表格行,使底部表格宽度变为与顶部表格宽度相同。像这样:

two tables of same width

上图有点偏差。想要的是 table 是宽度完全一样。当然,理想情况下,实现此目的的 HTML/CSS不需要绝对宽度,因此宽度的变化第一个表格会自动导致第二个表格宽度发生变化。此外,我更喜欢仅使用 HTML 和 CSS 而非 JavaScript 的解决方案。

最佳答案

如果您希望两个表的宽度都必须相等,并且它们的宽度也必须相等,请将它们都设置为 width="100%",然后确保它们填充相同的父级 分区。然后,它们应该始终与父级一样宽,您可以使页面相对且流畅。

关于html - 想要一个 html 表格与另一个表格宽度相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53750613/

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