gpt4 book ai didi

html - 使用表格单元格内的 div 内的跨度管理文本溢出

转载 作者:太空宇宙 更新时间:2023-11-04 14:36:58 25 4
gpt4 key购买 nike

我在 span 元素中有一段很长的文本,我想使用省略号截断它。span 元素位于表格单元格内的 div 元素内。

如何将长文本截断为单元格大小。

这里是 HTML 代码片段:

<table>
<tr>
<td>
<div>
<span>
this is a long sentence to test the text overflow
</span>
</div>
</td>
</tr>

以及 CSS 代码:

table {
width: 50px;
table-layout: fixed;
}

td {
border: 1px solid red;
}

span {
white-space: nowrap;
text-overflow: ellipsis;
}

这是我在 JSFiddle 中的案例: http://jsfiddle.net/Fedy2/wG3CF/

最佳答案

测试这个例子我的 friend 们!

 span {
white-space: nowrap;
text-overflow: ellipsis;
overflow:hidden;
width:100%;
display:block;
}

这里是更新后的 JSFiddle 片段: http://jsfiddle.net/Fedy2/wG3CF/3/

关于html - 使用表格单元格内的 div 内的跨度管理文本溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24203247/

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