-
Notifications
You must be signed in to change notification settings - Fork 6
/
flowdirection.html
executable file
·44 lines (39 loc) · 1.04 KB
/
flowdirection.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
<html>
<head>
<title>Flexbox Grids</title>
<link rel="stylesheet" href="css/showcase.css">
<link rel="stylesheet" href="css/flowdirection.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300" rel="stylesheet">
</head>
<body>
<h2>Property: <code>flex-direction</code></h2>
<code>flex-direction: row;</code>
<div class="row container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
<code>flex-direction: row-reverse;</code>
<div class="row-reverse container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
<code>flex-direction: column;</code>
<div class="column container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
<code>flex-direction: column-reverse;</code>
<div class="column-reverse container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
</body>
</html>