flexbox_margin-collapse-ref.html (320B)
1 <!DOCTYPE html> 2 <title>flexbox | flexitem margin collapsing</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <style> 5 body { 6 margin: 0; 7 } 8 div { 9 background: blue; 10 border: 1px solid black; 11 } 12 p { 13 margin: 1em 0; 14 } 15 p+p { 16 margin: 2em 0 1em; 17 } 18 </style> 19 20 <div> 21 <p>filler</p> 22 <p>filler</p> 23 </div>