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

27 строки
336 B
HTML

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