Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
.clamp {
line-clamp: auto;
max-height: 3lh;
font: 20px / 20px monospace;
width: 10ch;
background: yellow;
}
.hidden-change {
font-size: 40px;
}
</style>
<div class="clamp">
Line 1<br>
Line 2<br>
Line 3<br>
<span class="hidden-change">Line four wraps</span><br>
Line 5
</div>