summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-check-grid-height-on-resize-ref.html
blob: 71968864924cafa3166a352d15e4d0d1b81383d1 (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
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<link rel="author" title="Brandon Stewart" href="mailto:brandonstewart@apple.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<meta name="assert" content="When the height of an element in the grid changes, ensure the grid is properly resized">
</head>

<style>
  grid {
    display: grid;
    grid-template-rows: masonry;
    grid-template-columns: auto;
    grid-gap: 10px;
    border: 10px;
    border-style: solid;
  }
  item1 {
    background-color: grey;
    height: 125px;
    width: 250px;
  }
  item2 {
    background-color: grey;
    height: 250px;
    width: 250px;
  }
</style>
</head>
<body>
  <grid>
    <item1>1</item1>
    <item2>2</item2>
  </grid>
</body>
</html>