<html>
<head>
<style>
.box {
position: relative;
width: 300px;
height: 200px;
border: 2px solid #00ab55;
}
.inner-box {
position: absolute;
top: 50px;
width: 100px;
height: 100px;
border: 2px solid #ff4842;
}
</style>
</head>
<body>
<h1>The top property</h1>
<div class="box">This div element has position: relative;
<div class="inner-box">This div element has position: absolute and top: 50px.</div>
</div>
</body>
</html>