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 <style> | |
5 * {font-family: monospace;} | |
6 body { | |
7 width: 10em; | |
8 } | |
9 ul { | |
10 background: blue; | |
11 padding: 0; | |
12 margin: 0; | |
13 list-style: none; | |
14 } | |
15 li { | |
16 color: white; | |
17 margin: 0; | |
18 width: 3.3333em; | |
19 display: inline-block; | |
20 } | |
21 </style> | |
22 | |
23 <ul> | |
24 <li>EFGH</li><li>ABCD</li><li>IJKL</li> | |
25 </ul> | |
OLD | NEW |