tenfourfox/layout/reftests/margin-collapsing/block-first-child-7-ref.html

22 lines
289 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#separator {
height: 10px;
background-color: green;
}
#first-child {
height: 20px;
background-color: blue;
}
</style>
</head>
<body>
<div id="separator"></div>
<div id="parent">
<div id="first-child"></div>
</div>
</body>
</html>