gecko/layout/reftests/margin-collapsing/table-caption-top-1-ref.html

33 lines
455 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.separator {
height: 20px;
background-color: green;
margin-bottom: 20px;
}
#table {
width: 100px;
}
#caption {
height: 20px;
background-color: blue;
margin-bottom: 20px;
}
#cell {
height: 20px;
background-color: red;
}
</style>
</head>
<body>
<div class="separator"></div>
<div id="table">
<div id="caption"></div>
<div id="cell"></div>
</div>
<div class="separator"></div>
</body>
</html>