gpt4 book ai didi

css - 顺风 : text-overflow: ellipsis?

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

有没有办法使用

text-overflow: ellipsis

想到Tailwind CSS Framework

我想像这样使用顺风约定:

&__title {
@apply text-overflow-ellipsis;
}

代替

&__title {
text-overflow: ellipsis;
}

最佳答案

CSS 属性 text-overflow: ellipsis; 不能单独使用。

除了文本溢出,您还应该使用其他属性,例如:

overflow: hidden; 
white-space: nowrap;

您可以使用.truncate 类来实现这一点。这是来自 Tailwind documentation. 的链接

初始问题的解决方案:

&__title {
@apply truncate;
}

关于css - 顺风 : text-overflow: ellipsis?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53497656/

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