tenfourfox/layout/reftests/margin-collapsing/block-float-1b-noref.html

25 lines
336 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#separator {
height: 20px;
background-color: green;
}
#margin {
height: 10px;
}
#float {
height: 100px; width: 50px;
margin-left: auto;
background-color: blue;
}
</style>
</head>
<body>
<div id="separator"></div>
<div id="margin"></div>
<div id="float"></div>
</body>
</html>