summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001-ref.html
blob: 1d53815f37dd9e1809757074ef4a9aad557877e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <title>CSS Grid: Reference for grid-template-columns interpolation</title>
  <style>
    .grid {
      display: grid;
      width: 400px;
      grid-gap: 10px;
      grid-template-columns: 60px 1fr;
    }
    span { border: 1px solid; }
  </style>
</head>
<body>
  <div class="grid">
    <span>column1</span>
    <span>column2</span>
  </div>
</body>
</html>