-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex8.html
More file actions
40 lines (38 loc) · 1.03 KB
/
Copy pathindex8.html
File metadata and controls
40 lines (38 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.container {
width: 90%;
background-color: #efefef;
margin: auto;
display: grid;
grid-template-columns: min-content 1fr 1fr minmax(150px, 300px);
grid-template-rows: 150px 150px;
grid-gap: 1rem;
}
.item {
font-size: 2rem;
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>