p标签超出显示...

版权声明:转载请注明出处~ https://blog.csdn.net/seven_north/article/details/88523811

限定行数的话

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; //需要控制的文本行数
	overflow: hidden;

不限制行数,只显示一行

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

猜你喜欢

转载自blog.csdn.net/seven_north/article/details/88523811