gpt4 book ai didi

html - 删除多列后单元格宽度相等

转载 作者:搜寻专家 更新时间:2023-10-31 23:11:06 25 4
gpt4 key购买 nike

更新:这里是 a follow up question with colspans .

我有一个包含 8 列的表格。在运行时,任意数量这些元素被删除。

其余的列将具有相同的宽度。问题是当元素内的文本宽度不同时。因为浏览器似乎根据每个单元格内文本的长度来设置单元格宽度。好的,这张图片可能更能说明问题:

enter image description here

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
table{
width:600px;
}
table td{
border:1px solid red;
text-align:center;
background-color:#FFFFCC;
}
caption{
color:blue;
font-size:80%;
}
</style>
<title></title>
</head>
<body>
<table>
<caption>Original table</caption>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<tr>
</table>
<table>
<caption>After some columns are removed</caption>
<tr>
<td>1</td>
<td>2</td>
<td>4</td>
<td>5</td>
<td>7</td>
<td>8</td>
<tr>
</table>
<table>
<caption>I want these to have the same width</caption>
<tr>
<td>1</td>
<td>Two</td>
<td>Three</td>
<td>Column number four</td>
<td>5</td>
<tr>
</table>
<table>
<caption>I want these to have the same width, too</caption>
<tr>
<td>1</td>
<td>Column number four</td>
<td>5</td>
<tr>
</table>
</body>
</html>

我搜索了 stackoverflow 并找到了以下帖子,但它们不是我的答案:

最佳答案

您可以在 table 上使用 table-layout:fixed 来阻止浏览器根据其内容自动调整表格的大小。然后你必须给每个 TD 一个设定的宽度。任何没有设置宽度的 TD 将占用剩余的宽度。

关于html - 删除多列后单元格宽度相等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9115878/

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