summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/reference/webkit-line-clamp-dynamic-001-ref.html
blob: 21458953df99e0be27d2143c182a5829438ede5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<style>
#container {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  width: 10ch;
}
</style>
<body>
  <div id="container">
    abc def ghi jkl mno pqr stu vwx yz
    123 456 789
  </div>
</body>