webkit-line-clamp-031-ref.html (452B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 .clamp { 6 display: -webkit-box; 7 -webkit-box-orient: vertical; 8 font: 16px / 32px serif; 9 white-space: pre; 10 padding: 0 4px; 11 background-color: yellow; 12 } 13 .big { 14 font-weight: bold; 15 border-top: 2px solid blue; 16 padding: 20px 0; 17 } 18 </style> 19 <div class="clamp"><div class="item">Line 1 20 Line 2 21 Line 3 <span class="big">BIG</span>…</div></div> 22 <p>Following content.</p>