flexbox_margin-left-ex-ref.html (503B)
1 <!DOCTYPE html> 2 <title>flexbox | margin-left: auto</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <style> 5 div { 6 background: blue; 7 margin: 1em 0; 8 border: 1px solid black; 9 height: 8em; 10 width: 32em; 11 position: relative; 12 } 13 span { 14 background: white; 15 margin: 1em; 16 height: 6em; 17 display: inline-block; 18 } 19 span:first-child { 20 margin: 0; 21 position: absolute; 22 right: 1em; 23 top: 1em; 24 } 25 </style> 26 27 <div> 28 <span>four</span><span>one</span><span>two</span><span>three</span> 29 </div>