flexbox_margin-left-ex.html (599B)
1 <!DOCTYPE html> 2 <title>flexbox | margin-left: auto</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/#auto-margins"> 5 <link rel="match" href="flexbox_margin-left-ex-ref.html"> 6 <style> 7 div { 8 background: blue; 9 margin: 1em 0; 10 border: 1px solid black; 11 height: 8em; 12 width: 32em; 13 position: relative; 14 15 display: flex; 16 } 17 span { 18 background: white; 19 margin: 1em; 20 display: inline-block; 21 } 22 span:last-child { 23 margin-left: auto; 24 } 25 </style> 26 27 <div> 28 <span>one</span><span>two</span><span>three</span><span>four</span></div>