gecko/layout/reftests/margin-collapsing/block-no-content-1b.html

21 lines
251 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#a, #c {
background-color: green;
height: 20px;
}
#b {
margin-top: 20px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div id="a"></div>
<div id="b"></div>
<div id="c"></div>
</body>
</html>