flexbox_direction-column-reverse.html (652B)
1 <!DOCTYPE html> 2 <title>flexbox | flex-direction: column-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-column-reverse-ref.html"> 7 <style> 8 div { 9 background: blue; 10 margin: 1em 0; 11 border: 1px solid black; 12 13 display: flex; 14 flex-direction: column-reverse; 15 } 16 span { 17 background: white; 18 margin: 1em; 19 width: 8em; 20 display: inline-block; 21 } 22 .test { 23 background: #ffcc00; 24 } 25 </style> 26 27 <div> 28 <span class="test">filler</span> 29 <span>filler</span> 30 <span>filler</span> 31 <span>filler</span> 32 </div>