css只能显示两行,超出两行用点点点表示,css溢出

这个属性想设置超出几行,就写几,如上是超出6行,超出的用点点点表示

  text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 6;-webkit-box-orient: vertical;

这里是关键,想超出几行就写几

-webkit-line-clamp: 6;

如果是一行超出的话 , 就这么写

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

溢出的效果图

你可能感兴趣的:(css)