gpt4 book ai didi

html - 如何强制表格中的所有行具有相同的高度

转载 作者:技术小花猫 更新时间:2023-10-29 12:20:47 34 4
gpt4 key购买 nike

我正在尝试构建一个 html 表格,但我想强制所有行具有相同的高度(无论单元格中有多少内容)。如果单元格超出空间,我希望它只切断文本并隐藏其余部分。

这可以使用 CSS 等吗?

最佳答案

仅限 IE

    #fixedheight {
table-layout: fixed;
}

#fixedheight td {
height: 20px;
overflow: hidden;
width: 25%;
}
    <table id="fixedheight">
<tbody>
<tr>
<td>content</td>
<td>lots of content that should spend way more time wrapping down than it should if I were just to have a short bit of stuff, that would be invaded by zombies and the such</td>
<td>more content</td>
<td>small content</td>
<td>enough already</td>
</tr>
</tbody>
</table>


通用解决方案

    #fixedheight {
table-layout: fixed;
}

#fixedheight td {
width: 25%;
}

#fixedheight td div {
height: 20px;
overflow: hidden;
}
    <table id="fixedheight">
<tbody>
<tr>
<td>
<div>content</div>
</td>
<td>
<div>lots of content that should spend way more time wrapping down than it should if I were just to have a short bit of stuff, that would be invaded by zombies and the such</div>
</td>
<td>
<div>more content</div>
</td>
<td>
<div>small content</div>
</td>
<td>
<div>enough already</div>
</td>
</tr>
</tbody>
<table>

关于html - 如何强制表格中的所有行具有相同的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5671098/

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