blob: 7ca6742d3424d82123f3aaf3ae2d9bfd453a9022 [file] [edit]
<style>
#main {
position: relative;
}
.container {
position: relative;
clear: both;
}
.content {
float: left;
width: 50px;
height: 50px;
background-color: blue;
}
#content {
float: left;
padding-top: 20px;
height: 10%;
width: 50px;
background-color: green;
}
</style>
<div id=main>
<div class=content></div>
<div class=container>
<div id=content></div>
</div>
</div>
<pre>PASS if green box is right under the blue box.</pre>
</script>