blob: fea908f152b4266a279e0c3a0203adba4e2fafc9 (
plain)
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
|
<!DOCTYPE html>
<title>flexbox | flex-flow: column-reverse wrap</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
background: blue;
padding-top: 1em;
margin: 1em 0;
border: 1px solid black;
width: 20em;
height: 7em;
}
span {
background: white;
margin: 1em;
width: 8em;
height: 1.5em;
float: left;
}
</style>
<div>
<span>two</span>
<span>four</span>
<span>one</span>
<span>three</span>
</div>
|