flexbox_justifycontent-spacearound-only-ref.html (407B)
1 <!DOCTYPE html> 2 <title>flexbox | justify-content: space-around | single item</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: 30em; 11 } 12 span { 13 background: white; 14 margin: 1em auto; 15 width: 6em; 16 max-width: 6em; 17 height: 6em; 18 display: block; 19 } 20 </style> 21 22 <div> 23 <span>one</span> 24 </div>