interview-answe icon indicating copy to clipboard operation
interview-answe copied to clipboard

158.[CSS]css文本过长显示省略号

Open webVueBlog opened this issue 4 years ago • 1 comments

[CSS]

webVueBlog avatar Apr 02 '20 08:04 webVueBlog

<style scoped>
	.text {
		width: 55px;
		-webkit-line-clamp: 1;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		word-break: break-word;
	}
</style>

webVueBlog avatar Apr 02 '20 08:04 webVueBlog