html如何设置溢出隐藏

html设置溢出隐藏的方法:

单行:

overflow: hidden;

text-overflow:ellipsis;

white-space: nowrap;

多行:

display: -webkit-box;

-webkit-box-orient: vertical;

-webkit-line-clamp: 2;

overflow: hidden;

 

你可能感兴趣的