gecko-dev/layout/reftests/margin-collapsing/block-no-content-4.html

31 строка
365 B
HTML

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