Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<style>
.container {
width: 100px;
height: 100px;
background-color: green;
position: absolute;
left: 10px;
top: 10px;
}
.child {
width: 10px;
height: 10px;
background-color: blue;
left: 150px;
position: absolute;
}
</style>
<body>
<div class="container">
<div class="child"></div>
</div>
</body>
</html>