gpt4 book ai didi

css - 仅在表格单元格中显示一行文本

转载 作者:行者123 更新时间:2023-11-28 11:10:18 24 4
gpt4 key购买 nike

我发现了几种 CSS 解决方案,可以在一个元素中只显示一行文本,否则该元素的文本内容将占据多行。但是,当元素是表格单元格时,它们似乎不起作用。在表格单元格中不可能实现这种限制吗?

最佳答案

您可以使用 max-width:white-space: nowrap; 的组合来做到这一点:JS Fidle

HTML

<table>
<tr>
<td>content content and a bunch of other stuff.</td>
</tr>
</table>

CSS

td {
max-width: 120px;
white-space: nowrap;
background: #000;
color: white;
}

关于css - 仅在表格单元格中显示一行文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22720420/

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