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-auto-039.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Overflow: `line-clamp: auto` empty div</title>
<link rel="match" href="reference/line-clamp-auto-039-ref.html">
<meta name="assert" content="Checks that the clamp point is after, rather than before, an empty div, and that this results in no ellipsis being inserted as the last thing before the clamp point isn't a line">
<style>
.clamp {
line-clamp: auto;
max-height: 4lh;
background-color: yellow;
}
</style>
<div class="clamp">
Line 1<br>
Line 2<br>
Line 3<br>
Line 4<br>
<div></div>
Line 5
</div>