Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Overflow: `line-clamp: auto` empty div</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<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>