-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.html
44 lines (42 loc) · 994 Bytes
/
grid.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Grid</title>
<link rel="stylesheet" href="grid.css">
</head>
<body>
<div class="grid">
<div class="one">
Hello World / 1
</div>
<div class="three">
Hello World / 3
</div>
<div class="four">
Hello World / 4
</div>
<div class="four">
Hello World / 4
</div>
</div>
<div class="grid">
<div class="twelve">
Hello World / 12
</div>
</div>
<div class="grid">
<div class="centered">
Hello World / centered
</div>
</div>
</body>
</html>
<!-- Give all divs in the grid a background color to see the positioning of the columns -->
<style>
.grid > div {
background: greenyellow;
}
</style>