-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgrid.html
32 lines (32 loc) · 1.08 KB
/
subgrid.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Subgrid</title>
<link rel="stylesheet" href="css/subgrid.css">
<script src="https://kit.fontawesome.com/b182c44c0a.js" crossorigin="anonymous"></script>
</head>
<body>
<main>
<h1>subgrId</h1>
<h2>
<span>firefox</span>
<i class="fa-duotone fa-right"></i>
<span>version > 71.0</span>
</h2>
<p>Setting the value <strong>subgrid</strong> on grid-template-columns, grid-template-rows or both uses the tracks defined on the parent instead of creating a new track listing.</p>
<section>
<div class="a">a</div>
<div class="b">b</div>
<div class="c">c</div>
<div class="d">the subgrid
<div class="e">e</div>
<div class="f">f</div>
<div class="g">g</div>
</div>
</section>
</main>
</body>
</html>