css零碎知识点小结

1、单行文字溢出显示省略号:

div{
     width: 200px;
     overflow: hidden;
     text-overflow:ellipsis;
     white-space: nowrap;
  }

2、对span设置text-indent期望缩进指定值,但是没有起作用,是因为text-indent只能给块级元素设置。所以改css为:

span{
    display:inline-block;
}

不断积累完善中~~~

原文地址:https://www.cnblogs.com/happypayne/p/7652752.html