-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimg_gallery.html
56 lines (55 loc) · 1.22 KB
/
img_gallery.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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Image Gallery</title>
<meta name="author" content="Curlynoemi" />
<meta name="description" content="Responsive Image Gallery" />
<style>
.gallery {
line-height: 0;
column-count: 5;
column-gap: 5px;
}
.gallery img {
width: 100%;
height: auto;
margin-bottom: 5px;
}
@media (max-width: 1200px) {
.gallery {
column-count: 4;
column-count: 4;
column-count: 4;
}
}
@media (max-width: 1000px) {
.gallery {
column-count: 3;
column-count: 3;
column-count: 3;
}
}
@media (max-width: 800px) {
.gallery {
column-count: 2;
column-count: 2;
column-count: 2;
}
}
@media (max-width: 400px) {
.gallery {
column-count: 1;
column-count: 1;
column-count: 1;
}
}
</style>
</head>
<body>
<div class="gallery">
<img src="mountain.jpg" />
<img src="mountain.jpg" />
</div>
</body>
</html>