blob: c2b93d7304bc7eb9465f58f20b8e2e811232dd01 [file] [edit]
<style>
div {
width: 50px;
height: 50px;
}
.left {
background-color: green;
}
.right {
position: relative;
top: -50px;
left: 100px;
background-color: blue;
}
</style>
<div class=left></div><div class=right></div>