summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/reference/line-clamp-012-ref.html
blob: f412e0110d45ac2db2e8e55adfdab3ae9dce57df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
.clamp {
  font: 16px / 32px serif;
  padding: 4px;
  white-space: pre;
  background-color: yellow;
  border: 2px solid black;
}
.inner {
  background-color: skyblue;
  padding: 4px;
  border: 2px solid purple;
}
</style>
<div class="clamp">Line 1
Line 2<div class="inner">Line 3
Line 4…</div></div>
<p>Following content.</p>