css小技巧积累

1.对于超出文本域的文字处理,使用省略号处理(属于css3属性):

      overflow:hidden;
      text-overflow:ellipsis;
      -o-text-overflow:ellipsis;
      white-space:nowrap;
      100%;

2.

原文地址:https://www.cnblogs.com/no-broken-boy/p/5145480.html