index.less 402 Bytes
Newer Older
niko's avatar
niko committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
.ellipsis {
  display: inline-block;
  word-break: break-all;
}

.lines {
  position: relative;
  .shadow {
    color: transparent;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 9999px;
    z-index: -999;
  }
}

20 21 22 23 24 25
.lineClamp {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
niko's avatar
niko committed
26
}