-
Notifications
You must be signed in to change notification settings - Fork 0
/
gridbasic.html
38 lines (38 loc) · 1.02 KB
/
gridbasic.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
<!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>Basic Grid</title>
<style>
body{
display: grid;
grid-template-columns: auto;
grid-template-rows: 130px 400px 130px;
grid-gap: 15px;
}
body{
margin: 0 auto;
max-width: 575px;
padding: 15px 0;
}
header,footer,main{
grid-column: 1/ span 2;
background-color: purple;
color: white;
display: flex;
align-items: center;
justify-content: center;
/* justify is used for horizontal alignment and align is used for the vertical alignment of the text */
}
</style>
</head>
<body>
<header>This is the header</header>
<main>
this is the main
</main>
<footer>Here comes the footer</footer>
</body>
</html>