我想:給定一個帶文本溢出的div:ellipsis;在焦點上,你如何刪除文本溢出?
.listItem {
text-overflow: ellipsis;
}
.listItem:focus {
color: red;
text-overflow: none !important;
}
但是,對文本溢出沒有影響但它確實變成紅色。想法?
我想:給定一個帶文本溢出的div:ellipsis;在焦點上,你如何刪除文本溢出?
.listItem {
text-overflow: ellipsis;
}
.listItem:focus {
color: red;
text-overflow: none !important;
}
但是,對文本溢出沒有影響但它確實變成紅色。想法?
text-overflow
財產沒有none
值。默認值是clip
。
您可以設置text-overflow
到clip
或者可以設置white-space
到normal
或overflow
到visible
。第二個選項是省略號工作的必要條件,所以更改它們會關閉它。
謝謝你做到了 –
在移動應用程序只有這個解決方案不起作用。需要'空白:正常' – shimatai