75-页面样式细节优化

30 阅读1分钟

超出显示滚动条

overflow:auto

滚动条隐藏

::-webkit-scrollbar{    
    display: none;   
    width: 0;  
    height: 0;
}

单行文本超出部分显示为省略号

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