OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <title>flexbox | flex-direction: row-reverse</title> | |
3 <link rel="author" href="http://opera.com" title="Opera Software"> | |
4 <link rel="help" | |
5 href="http://www.w3.org/TR/css-flexbox-1/#flex-direction-property"> | |
6 <link rel="match" href="flexbox_direction-row-reverse-ref.html"> | |
7 <style> | |
8 * {font-family: monospace;} | |
9 body { | |
10 width: 10em; | |
11 } | |
12 ul { | |
13 background: blue; | |
14 padding: 0; | |
15 margin: 0; | |
16 list-style: none; | |
17 | |
18 display: flex; | |
19 flex-direction: row-reverse; | |
20 } | |
21 li { | |
22 color: white; | |
23 margin: 0; | |
24 width: 10em; | |
25 } | |
26 </style> | |
27 | |
28 <ul> | |
29 <li>IJKL</li> | |
30 <li>ABCD</li> | |
31 <li>EFGH</li> | |
32 </ul> | |
OLD | NEW |