-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrecreating-grid-1.html
More file actions
54 lines (54 loc) · 1.62 KB
/
recreating-grid-1.html
File metadata and controls
54 lines (54 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<style>
.height{
height: 200px;
}
.row1-height{
height: 100px;
}
.row2-height{
height: 500px;
}
.border-black{
border: 1px solid black;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col border-black">
<h1>.col</h1>
</div>
</div>
<div class="row row2-height">
<div class="col-4 border-black">
<h1>.col-4</h1>
</div>
<div class="col-8 border-black">
<div class="row">
<div class="col-3 border-black">
<h1>.col-3</h1>
</div>
<div class="col-3 border-black">
<h1>.col-3</h1>
</div>
<div class="col-3 border-black">
<h1>.col-3</h1>
</div>
<div class="col-3 border-black">
<h1>.col-3</h1>
</div>
</div>
</div>
</div>
</div>
</body>
</html>