-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjustify.html
executable file
·50 lines (46 loc) · 1.28 KB
/
justify.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
<html>
<head>
<title>Flexbox Grids</title>
<link rel="stylesheet" href="css/showcase.css">
<link rel="stylesheet" href="css/justify.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300" rel="stylesheet">
</head>
<body>
<h2>Property: <code>justify-content</code></h2>
<code>justify-content: flex-start;</code>
<div class="justify-start container outlined">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
<code>justify-content: flex-end;</code>
<div class="justify-end container outlined">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
<code>justify-content: center;</code>
<div class="justify-center container outlined">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
<code>justify-content: space-around;</code>
<div class="justify-around container outlined">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
<code>justify-content: space-between;</code>
<div class="justify-between container outlined">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
</body>
</html>