gecko/layout/reftests/margin-collapsing/table-caption-bottom-2-ref.html

34 lines
474 B
HTML

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