summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/webkit-line-clamp-034.html
blob: e0b31d544c20a0f57486c771b6b4edef9b69625b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<meta charset="utf-8">
<title>CSS Overflow: -webkit-line-clamp with visibility: hidden;</title>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#webkit-line-clamp">
<link rel="match" href="/css/reference/blank.html">
<style>
#clamp {
  visibility: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden; /* can be removed once implementations update their old -webkit-line-clamp implementations */
}
</style>
<div id="clamp">
  AAAAAAAAA<br>
  BBBBBBBBB<br>
  CCCCCCCCC<br>
  DDDDDDDDD<br>
  EEEEEEEEE
</div>