CSS---text-overflow: ellipsis无效问题

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/JamieCheung/article/details/82260080
.groupNickname {
	width: 1.5rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

必须配合overflow: hidden; 和 white-space: nowrap;使用才有效。

猜你喜欢

转载自blog.csdn.net/JamieCheung/article/details/82260080