-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (44 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
60 lines (44 loc) · 1.59 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
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Document</title>
<style>
.my-div {
border: 1px solid red;
}
.my-container {
border: 1px solid green;
padding: 10px;
height: 100vh;
}
.my-wrap {
border: 1px solid yellow;
}
</style>
</head>
<body>
<div class="d-flex flex-row align-items-center
justify-content-center p-2 bd-highlight my-wrap my-container">
<a href="#">a</a>
<a href="#">b</a>
<div class="p-1 bd-highlight my-div">flex item 1</div>
<div class="p-1 mr-auto bd-highlight my-div">flex item 2</div>
<div class="p-1 bd-highlight my-div">flex item 3</div>
<div class="fixed-bottom d-flex flex-row justify-content-center my-div ">
<span class="">
<a href="#">a</a>
</span>
<span>
<a href="#">a</a>
<a href="#">b</a>
</span>
</div>
</div>
</body>
</html>