-
Notifications
You must be signed in to change notification settings - Fork 6
/
order.html
executable file
·37 lines (32 loc) · 976 Bytes
/
order.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
<html>
<head>
<title>Flexbox Grids</title>
<link rel="stylesheet" href="css/showcase.css">
<link rel="stylesheet" href="css/order.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300" rel="stylesheet">
</head>
<body>
<h2>Property: <code>order</code></h2>
<p>Default order</p>
<div class="container">
<div>1 <br>order: 0</div>
<div>2 <br>order: 0</div>
<div>3 <br>order: 0</div>
<div>4 <br>order: 0</div>
</div>
<p>2 and 3 with custom order</p>
<div class="order1 container">
<div>1 <br>order: 0</div>
<div>2 <br>order: -1</div>
<div>3 <br>order: 1</div>
<div>4 <br>order: 0</div>
</div>
<p>All with custom order</p>
<div class="order2 container">
<div>1 <br>order: 3</div>
<div>2 <br>order: 2</div>
<div>3 <br>order: 1</div>
<div>4 <br>order: 2</div>
</div>
</body>
</html>