-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (42 loc) · 1.08 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="google" content="notranslate">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grid Fundamentals</title>
<style>
body {
font-family: sans-serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
background-color: #f2f2f2;
}
.item {
width: 200px;
margin: 20px;
background-color: #3498db;
color: #fff;
text-align: center;
line-height: 2;
font-size: 24px;
}
</style>
</head>
<body>
<div class="container">
<h1>Grid Sizing</h1>
<a class="item" href="./fixed-size.html">Fixed Size</a>
<a class="item" href="./auto-size.html">Auto Size</a>
<a class="item" href="./fractional-size.html">Fractional Size</a>
<a class="item" href="./minmax-size.html">MinMax Size</a>
<a class="item" href="./repeat.html">Repeat</a>
<a class="item" href="./test.html">Test</a>
</div>
</body>
</html>