26 lines
793 B
HTML
26 lines
793 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Overflow: `line-clamp: auto` with bp and box-sizing: border-box</title>
|
|
<link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com">
|
|
<link rel="help" href="https://drafts.csswg.org/css-overflow-4/#line-clamp">
|
|
<link rel="match" href="reference/line-clamp-auto-002-ref.html">
|
|
<meta name="assert" content="line-clamp: auto should clamp fine with border and padding, even with box-sizing: border-box">
|
|
<style>
|
|
.clamp {
|
|
line-clamp: auto;
|
|
max-height: 138px; /* 32px * 4 + (1px + 4px) * 2 */
|
|
box-sizing: border-box;
|
|
font: 16px / 32px serif;
|
|
white-space: pre;
|
|
background-color: yellow;
|
|
margin: 2px;
|
|
border: 1px solid black;
|
|
padding: 4px;
|
|
}
|
|
</style>
|
|
<div class="clamp">Line 1
|
|
Line 2
|
|
Line 3
|
|
Line 4
|
|
Line 5
|
|
Line 6</div>
|