Mypal/layout/reftests/margin-collapsing/block-float-1a-ref.html
2019-03-11 13:26:37 +03:00

22 lines
301 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#separator {
height: 20px;
margin-bottom: 20px;
background-color: green;
}
#float {
float: left;
height: 100px; width: 50px;
background-color: blue;
}
</style>
</head>
<body>
<div id="separator"></div>
<div id="float"></div>
</body>
</html>