-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
42 lines (40 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body {
margin: 0;
padding: 0;
}
.container {
margin: 0;
height: calc(100vh - 20px);
width: calc(100vw - 20px);
border: 10px solid red;
display: flex;
flex-direction: column;
justify-content: center;
/* align-items: center; */
}
.container > .img_blocks {
display: flex;
flex-direction: row;
justify-content: center;
}
</style>
</head>
<body>
<div class="container">
<div class="img_blocks">
<img src="https://source.unsplash.com/random/150x150" alt="">
<img src="https://source.unsplash.com/random/150x150" alt="">
<img src="https://source.unsplash.com/random/150x150" alt="">
<!-- <img src="https://source.unsplash.com/random/150x150" alt="">
<img src="https://source.unsplash.com/random/150x150" alt="">
<img src="https://source.unsplash.com/random/150x150" alt=""> -->
</div>
</div>
</body>
</html>