line-clamp-auto-002.tentative.html (681B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Overflow: `line-clamp: auto` with mbp</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/line-clamp-auto-002-ref.html"> 7 <meta name="assert" content="line-clamp: auto should clamp fine with margins, border and padding"> 8 <style> 9 .clamp { 10 line-clamp: auto; 11 max-height: 4lh; 12 font: 16px / 32px serif; 13 white-space: pre; 14 background-color: yellow; 15 margin: 2px; 16 border: 1px solid black; 17 padding: 4px; 18 } 19 </style> 20 <div class="clamp">Line 1 21 Line 2 22 Line 3 23 Line 4 24 Line 5 25 Line 6</div>