css收集

45 阅读1分钟
多行文字
 word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  
  
  
   单行文字
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  
  用于背景重叠覆盖可点击
  pointer-events: none