-
Notifications
You must be signed in to change notification settings - Fork 0
/
alignment.php
88 lines (76 loc) · 3.46 KB
/
alignment.php
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Grid Alignment Bootstrap v4</title>
<link rel="stylesheet" href="assets/css/bootstrap.css">
</head>
<body>
<div class="container">
<h1>Vertical Alignment Multiple Row</h1>
<div class="row align-items-start" style="height: 120px; background-color: #ababa6;">
<div class="col bg-success border border-success">
One Of Three
</div>
<div class="col bg-success border border-success">
One Of Three
</div>
<div class="col bg-success border border-success">
One Of Three
</div>
</div>
<div class="row align-items-center" style="height: 120px; background-color: #6DAA7F;">
<div class="col bg-info border border-info">
One Of Three
</div>
<div class="col bg-info border border-info">
One Of Three
</div>
<div class="col bg-info border border-info">
One Of Three
</div>
</div>
<div class="row align-items-end" style="height: 120px; background-color: #486F83;">
<div class="col bg-danger border border-danger">
One Of Three
</div>
<div class="col bg-danger border border-danger">
One Of Three
</div>
<div class="col bg-danger border border-danger">
One Of Three
</div>
</div>
<hr>
<h2>Horizontal</h2>
<div class="row justify-content-start bg-danger" style="height: 100px;">
<div class="col-4 border border-success">
One Of Three
</div>
<div class="col-2 border border-success">
One Of Three
</div>
</div>
<div class="row justify-content-center bg-info" style="height: 100px;">
<div class="col-4 border border-danger">
One Of Three
</div>
<div class="col-2 border border-danger">
One Of Three
</div>
</div>
<div class="row justify-content-end bg-warning" style="height: 100px;">
<div class="col-4 border border-danger">
One Of Three
</div>
<div class="col-2 border border-danger">
One Of Three
</div>
</div>
</div><!-- /.container -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
</body>
</html>