tenfourfox/layout/reftests/margin-collapsing/block-zero-min-height-1a.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

23 lines
326 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.separator {
height: 20px;
background-color: green;
}
#min-height {
min-height: 0;
height: auto;
margin-top: 10px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="separator"></div>
<div id="min-height"></div>
<div class="separator"></div>
</body>
</html>