flexbox_margin.html (379B)
1 <!DOCTYPE html> 2 <title>flexbox | margins</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-containers"> 6 <link rel="match" href="flexbox_margin-ref.html"> 7 <style> 8 div { 9 background: black; 10 margin: 1em; 11 height: 4em; 12 13 display: flex; 14 justify-content: space-around; 15 } 16 </style> 17 18 <div></div>