blob: fe9436da53d707f8641e606d5756d3ad2e771b7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#webkit-line-clamp">
<link rel="match" href="reference/webkit-line-clamp-039-ref.html">
<meta name="assert" content="-webkit-line-clamp correctly clamps a block-in-inline.">
<style>
.clamp {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 5;
font: 16px / 32px serif;
background-color: yellow;
overflow: hidden;
}
</style>
<div class="clamp">
<div>
Line 1
<span><div>Line 2<br>Line 3<br>Line 4</div></span>
Line 5<br>Line 6
</div>
</div>
|