summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox-single-line-clamp-1-ref.html
blob: 602c027f7012af33f9dfc9ceaca821205fe1094a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<meta charset="utf-8">
<title>CSS Test Reference</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecoal95@gmail.com">
<style>
.container {
  display: block;
  background: gray;
  max-height: 200px;
}
.panel {
  background: lightblue;
  width: 150px;
  height: 200px;
  border: 1px solid purple;
  box-sizing: border-box;
}
</style>
<div class="container">
  <div class="panel">
  </div>
</div>