webkit-line-clamp-024-ref.html (330B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 .clamp { 6 display: inline-block; 7 overflow: hidden; 8 font: 16px / 32px monospace; 9 white-space: pre; 10 padding: 0 4px; 11 background-color: yellow; 12 } 13 </style> 14 Before <div class="clamp">Line 1 15 Line 2 16 Lineā¦</div> After</div> 17 <p>Following content.</p>