line-clamp-auto-007.html (667B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Overflow: `line-clamp: auto` with more than the content's height</title> 4 <link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#line-clamp"> 6 <link rel="match" href="reference/webkit-line-clamp-001-ref.html"> 7 <meta name="assert" content="line-clamp: auto should not clamp on an element whose max-height is greater than its size"> 8 <style> 9 .clamp { 10 line-clamp: auto; 11 max-height: 6lh; 12 font: 16px / 32px serif; 13 white-space: pre; 14 background-color: yellow; 15 } 16 </style> 17 <div class="clamp">Line 1 18 Line 2 19 Line 3 20 Line 4 21 Line 5</div>