-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (61 loc) · 1.84 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Flexbox la vie</title>
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/flex.css">
<link rel="stylesheet" href="./css/code.css">
<link rel="stylesheet" href="./css/psych.css">
</head>
<body >
<a class="background-right-link" href="./presentation/parent.html"></a>
<div class="container">
<div class="flex flex-center">
<h1>Flexbox ☛ La vie</h1>
</div>
<div class="panel panel-default spaced">
<div class="panel-heading">
<h4>Reference</h4>
</div>
<div class="panel-body">
<div class="flex flex-center">
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/">Css Tricks: A Complete Guide to Flexbox</a>
</div>
</div>
</div>
<div class="panel panel-default spaced">
<div class="panel-heading">
<h4>Compatibility</h4>
</div>
<div class="panel-body">
<table class="table">
<thead>
<tr>
<th><span>Chrome</span></th>
<th><span>Safari</span></th>
<th><span>Firefox</span></th>
<th><span>Opera</span></th>
<th><span>IE/Edge</span></th>
<th><span>Android</span></th>
<th><span>iOS</span></th>
</tr>
</thead>
<tbody>
<tr>
<td>21</td>
<td>6.1</td>
<td>12.1+</td>
<td>22+</td>
<td>11+</td>
<td>4.4+</td>
<td>7.1+</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>