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-048.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Overflow: `line-clamp: auto` with empty block with set height</title>
<link rel="author" title="Seva Alipov" href="mailto:salipov@mozilla.com">
<link rel="match" href="reference/line-clamp-auto-048-ref.html">
<style>
.clamp-auto-3lh {
line-clamp: auto;
max-height: 3lh;
font: 16px / 32px serif;
background-color: yellow;
}
.with-height {
height: 3lh;
background-color: red;
}
</style>
<div class=clamp-auto-3lh>
Line 1<br>
<div class="with-height"></div>
Line 3<br>
Line 4<br>
</div>