blob: 9f9079d956b97c14643cfb990330edf81bc6b5de (
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-reverse</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>four</span>
<span>two</span>
<span>three</span>
<span>one</span>
</div>
|