-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathgrid.html
65 lines (56 loc) · 2.15 KB
/
grid.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
57
58
59
60
61
62
63
64
65
<style>
.content {
padding: 80px;
border: 1px solid #eee;
}
.test-grid-layout {
columns: 340px;
column-gap: 30px;
}
.test-link {
padding: 20px;
background: #e4e4e4;
border-radius: 5px;
break-inside: avoid-column;
margin-bottom: 30px;
}
</style>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Grid Style</title>
</head>
<body>
<section class="content">
<div class="test-grid-layout">
<div class="test-link">
<h3>Header 1</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
</div>
<div class="test-link">
<h3>Header 2</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
</div>
<div class="test-link">
<h3>Header 3</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
</div>
<div class="test-link">
<h3>Header 4</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
</div>
<div class="test-link">
<h3>Header 5</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
</div>
</div>
</section>
</body>
</html>