css控制文字长度,超出长度显示...

 css控制文字长度,超出长度显示...

.style {
    max-width: 165px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

原文地址:https://www.cnblogs.com/cang12138/p/5553052.html