HTML&CSS - Position absolute example
by Code_Garage
HTML
<div class="container" id="blue">1.</div>
<div class="container" id="red">2.</div>
CSS
.container {
font-family: arial;
font-weight: bold;
width: 50px;
height: 50px;
margin: 5px;
padding: 5px;
color: white;
}
#red {
background: #e74c3c;
position: absolute;
left: 25px;
top: 25px;
}
#blue {
background: #3498db;
}