gpt4 book ai didi

css - 为什么我不能让 Ellipsis 在 IE 11 上运行

转载 作者:行者123 更新时间:2023-11-28 15:07:00 25 4
gpt4 key购买 nike

如果范围超出行大小,我会尝试显示一行句子后跟三个点 (...)。

我使用了以下 CSS,它在 Mozilla 和 Chrome 上运行良好,但在 IE 11 上不起作用。

display: block;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 20px;

请让我知道这是由于此省略号在 IE11 上的任何版本问题还是是否有修复。

最佳答案

IE11 支持 white-space:nowrap; & text-overflow:ellipsis;

这样试试

h2 {
display: block;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
padding-right: 20px;
}

关于css - 为什么我不能让 Ellipsis 在 IE 11 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49191099/

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