blob: 35ccd52ca93d1805f464e10aea6e2ca3f460e346 [file] [log] [blame]
<html>
<style>
div {
width: 50px;
height: 50px;
}
#blue {
background-color: blue;
margin-top: 50px;
overflow: hidden;
top: 50px;
}
#yellow {
background-color: yellow;
height: 60px;
margin-top: 30px;
}
#green {
background-color: green;
height: 70px;
margin-top: 50px;
}
</style>
<body>
<div id=green>
<div id=blue>
<div id=yellow></div>
</div>
</div>
</body>
</html>