Files
servo/tests/wpt/css-tests/css-flexbox-1_dev/html/reference/flexbox_margin-collapse-ref.htm

24 lines
357 B
HTML

<!DOCTYPE html>
<html><head><title>flexbox | flexitem margin collapsing</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<style>
body {
margin: 0;
}
div {
background: blue;
border: 1px solid black;
}
p {
margin: 1em 0;
}
p+p {
margin: 2em 0 1em;
}
</style>
</head><body><div>
<p>damer</p>
<p>damer</p>
</div>
</body></html>