grid-margins-no-collapse-001.html (722B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Grid Layout Test: grid's margins do not collapse</title> 4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com"> 5 <link rel="help" href="http://www.w3.org/TR/css-grid-1/#grid-containers" title="3.1 Establishing Grid Containers"> 6 <link rel="match" href="../reference/grid-text-green-margin-no-collapse-ref.html"> 7 <meta name="assert" content="This test checks that grid's margin (body) do not collapse with the marings of the grid item (a paragraph)."> 8 <style> 9 body { 10 display: grid; 11 } 12 13 p { 14 color: green; 15 } 16 </style> 17 <p>This text should be <strong>green</strong> and body and paragraph margins should <strong>not collapse</strong>.</p>