tenfourfox/layout/reftests/margin-collapsing/block-negative-5-noref1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

26 lines
315 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body {
margin: 0; padding: 5px;
}
div {
height: 20px;
background-color: green;
}
#small {
margin-top: 40px;
margin-bottom: -40px;
}
#big {
background-color: blue;
}
</style>
</head>
<body>
<div id="small"></div>
<div id="big"></div>
</body>
</html>