有时我们在做页面时会遇到这种情况,文本内容过长,造成页面布局不好看,那么这里就来get一个新技能吧,
当我们想要内容在一行显示部分,其余内容显示...的时候,我们只需要对其标签的style样式设置一下css
width: 80px;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-webkit-text-overflow: ellipsis;
-moz-text-overflow: ellipsis;
white-space: nowrap; /*规定段落中的文本不进行换行
当我们想要内容多行显示时,又会因为太多行而烦恼,那么我们可以这样设置
width: 100px;
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; /* 可以显示的行数,超出部分用...表示*/
-webkit-box-orient: vertical;
好啦,以上就是怎么让多余的内容进行...显示的,其中可以根据width宽度来控制显示内容的多少