1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| .lastline-space-ellipsis { position: relative; max-height: 40px; overflow: hidden; word-wrap: break-word; word-break: break-all; line-height: 20px; color: #fff; } .lastline-space-ellipsis::before, .lastline-space-ellipsis::after { position: absolute; left: 0; top: 0; width: 100%; color: #333; content: attr(title); } .lastline-space-ellipsis::before { display: block; z-index: 1; max-height: 20px; overflow: hidden; background-color: #fff; } .lastline-space-ellipsis::after { display: -webkit-box; -webkit-box-orient: vertical; -webkit-box-sizing: border-box; box-sizing: border-box; text-overflow: ellipsis; -webkit-line-clamp: 2; text-indent: -3em; padding-right: 3em; }
|