Web/03-CSS进阶/CSS开发积累.md
2019-10-16 14:42:38 +08:00

136 B

让文字只显示一行,超出显示省略号

	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;