Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/line-clamp/line-clamp-015.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow: line-clamp applies to inline blocks</title>
<link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com">
<link rel="match" href="reference/line-clamp-015-ref.html">
<meta name="assert" content="line-clamp affects block containers, which includes inline blocks">
<style>
.clamp {
display: inline-block;
line-clamp: 3;
font: 16px / 32px monospace;
white-space: pre;
padding: 0 4px;
width: 7.01ch;
background-color: yellow;
}
</style>
Before <div class="clamp">Line 1
Line 2
Line 3
Line 4
Line 5</div> After</div>
<p>Following content.</p>