css处理单行,多行文本溢出

Posted cwxblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css处理单行,多行文本溢出相关的知识,希望对你有一定的参考价值。

单行文本溢出

p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

多行文本溢出

p {
        
	position: relative;
	line-height: 1.5em;
	/*高度为需要显示的行数*行高,比如这里我们显示两行,则为3*/
	height: 3em;
	overflow: hidden;
	
	/* 方便观察 */
	width: 500px;
	color: white;
	background: rgb(16, 139, 196);
}

p:after {
	content: '...';
	position: absolute;
	/* 如果设置了内边距,定位也要调整 */
	bottom: 0; 
	right: 0;
	background-color: transparent;
}

以上是关于css处理单行,多行文本溢出的主要内容,如果未能解决你的问题,请参考以下文章

css处理单行,多行文本溢出

css处理单行,多行文本溢出

react 单行和多行文字溢出显示...

纯css实现文本内容单行/多行溢出显示省略号

css实现文本溢出省略(单行/多行)

css实现文本溢出省略(单行/多行)