-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex7.html
More file actions
43 lines (41 loc) · 1.12 KB
/
Copy pathindex7.html
File metadata and controls
43 lines (41 loc) · 1.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.container {
width: 900px;
height: 400px;
background-color: #efefef;
margin: 3rem auto;
display: grid;
grid-template-columns: repeat(2, 100px);
grid-template-rows: repeat(4, 50px);
grid-gap: 1rem;
justify-content: center;
align-content: space-evenly;
}
.item {
font-size: 1rem;
background-color: black;
color: #fff;
display: block;
text-align: center;
}
</style>
<title>Document</title>
</head>
<body>
<div class="container">
<div class="item">Item-1</div>
<div class="item">Item-2</div>
<div class="item">Item-3</div>
<div class="item">Item-4</div>
<div class="item">Item-5</div>
<div class="item">Item-6</div>
<div class="item">Item-7</div>
<div class="item">Item-8</div>
</div>
</body>
</html>