gecko/layout/reftests/margin-collapsing/inline-block-sibling-1c.html
Daniel.S 87d3306c75 Bug 477462. Add many margin-collapsing reftests. r+sr=dbaron
--HG--
extra : rebase_source : 7ae1e9d247225b11cf6468bd0334ccd80f86db8c
2009-04-25 20:50:57 +12:00

30 lines
371 B
HTML

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