| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 3 <head> |
| 4 <title>CSS Grid Layout Test: grid's margins do not collapse</title> |
| 5 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igal
ia.com" /> |
| 6 <link rel="help" href="http://www.w3.org/TR/css-grid-1/#grid-containers"
title="3.1 Establishing Grid Containers" /> |
| 7 <link rel="match" href="../reference/grid-text-green-margin-no-collapse-
ref.xht" /> |
| 8 <meta name="assert" content="This test checks that grid's margin (body)
do not collapse with the marings of the grid item (a paragraph)." /> |
| 9 <style type="text/css"><![CDATA[ |
| 10 body { |
| 11 display: grid; |
| 12 } |
| 13 |
| 14 p { |
| 15 color: green; |
| 16 } |
| 17 ]]></style> |
| 18 </head> |
| 19 <body> |
| 20 <p>This text should be <strong>green</strong> and body and paragraph mar
gins should <strong>not collapse</strong>.</p> |
| 21 </body> |
| 22 </html> |
| OLD | NEW |