1
0
Fork 0
firefox/layout/reftests/margin-collapsing/block-overflow-2-ref2.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

32 lines
463 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.separator {
height: 20px;
background-color: blue;
}
.spacer {
height: 20px;
}
#margin {
height: 40px;
background-color: lightgreen;
}
#child {
height: 160px;
background-color: green;
}
</style>
</head>
<body>
<div class="separator"></div>
<div class="spacer"></div>
<div>
<div id="margin"></div>
<div id="child"></div>
</div>
<div class="spacer"></div>
<div class="separator"></div>
</body>
</html>