flexbox_rtl-direction.html (752B)
1 <!DOCTYPE html> 2 <title>flexbox | flex-direction: column-reverse | rtl</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-direction"> 5 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column-reverse"> 6 <link rel="match" href="flexbox_rtl-direction-ref.html"> 7 <style> 8 div { 9 background: blue; 10 margin: 1em 0; 11 border: 1px solid black; 12 direction: rtl; 13 14 display: flex; 15 flex-direction: column-reverse; 16 } 17 span { 18 background: white; 19 margin: 1em; 20 width: 8em; 21 display: inline-block; 22 } 23 .test { 24 background: #ffcc00; 25 } 26 </style> 27 28 <div> 29 <span class="test">filler</span> 30 <span>filler</span> 31 <span>filler</span> 32 <span>filler</span> 33 </div>