当前位置: 首页 > 工具软件 > ellipsis > 使用案例 >

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

孔砚
2023-12-01
.groupNickname {
	width: 1.5rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

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

 类似资料: