gpt4 book ai didi

javascript - 三个点 - 溢出 :ellipsis

转载 作者:太空宇宙 更新时间:2023-11-03 22:00:06 27 4
gpt4 key购买 nike

我的问题是,为什么“text-overflow:ellipsis;”对我不起作用?我的页面上有表格,我想缩短单元格 (td) 中的一些文本。如您所见,我在 css 中没有宽度参数。我从 json 获取这个值,然后用 jquery 设置它。也许这是问题所在?如果是这样,我该如何解决?

#myTable2 td{
white-space: nowrap;
overflow:hidden;
text-overflow:ellipsis;
min-width:47px;
border-top: solid 1px #ebebeb;
border-spacing:none;
cellpadding: 0;
cellspacing: 0;
font-family:arial;
font-size: 8pt;
color: #3D3D3D;
padding: 4px;
}

我在 Chrome 19、最新的 Firefox 和 IE9 中对其进行了测试。谢谢

最佳答案

你需要表格的宽度和table-layout:fixed;

http://jsfiddle.net/CagPK/

#myTable2 td{
white-space: nowrap;
overflow: hidden;
text-overflow:ellipsis;
}
#myTable2
{
table-layout:fixed;
width: 100px;
}

关于javascript - 三个点 - 溢出 :ellipsis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11115102/

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