gpt4 book ai didi

html - 如何使文本水平溢出(保持在同一行)

转载 作者:行者123 更新时间:2023-12-01 13:34:19 26 4
gpt4 key购买 nike

我在使表格单元格水平滚动时遇到问题。这是我到目前为止所拥有的

<tbody>
<tr>
<td>01/01/14</td>
<td>
<div class="scroll">
A really long text that will overflow horizontally
</div>
</td>
</tr>
</tbody>

和滚动 css
.scroll{ 
height: 20px
max-width: 500px
overflow-x: scroll
overflow-y: hidden
}

现在无论我尝试什么,单元格都不会水平溢出。它垂直但不是我想要的。任何想法为什么这不起作用?

谢谢

最佳答案

您缺少分号 ;在你的风格规则的最后。另外,添加 white-space: nowrap这样一切都将保持在一条线上并继续向右。

Live demo (click).

.scroll { 
height: 20px;
max-width: 500px;
overflow-x: scroll;
white-space: nowrap;
}

在我的演示中,我更改了 height40px . 20px似乎小看文字。您可能不需要 overflow-y .

关于html - 如何使文本水平溢出(保持在同一行),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21119208/

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