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/continue-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow: continue basic test</title>
<link rel="match" href="reference/continue-001-ref.html">
<meta name="assert" content="Continue:collapse should cause excess content to be hidden, without inserting any ellipsis">
<style>
.clamp {
white-space: pre;
continue: collapse;
max-height: 3lh;
}
</style>
<p>This test passes if there are 3 lines below, with the 3rd one ending with the digit 3.
<div class="clamp">Line 1
Line 2
Line 3
Line 4
Line 5</div>