HTML&CSS - Position absolute

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;
  box-sizing: border-box;
}
#red {
  background: #e74c3c;
}
#blue {
  background: #3498db;
	position: absolute;
	top: 25px;
	left: 25px;
}