line-clamp-auto-012.html (634B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Overflow: `min-height` with `line-clamp: auto`</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="min-height by itself does not add a height constraint for line-clamp: auto"> 8 <style> 9 .clamp { 10 line-clamp: auto; 11 min-height: 3lh; 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>