HTML&CSS - Position size

by Code_Garage

HTML

<div class="container" id="blue">1.</div>

CSS

body {
}
.container {
  font-family: arial;
  font-weight: bold;
  margin: 5px;
  padding: 5px;
  color: white;
  box-sizing: border-box;
}
#blue {
  background: #3498db;
	position: absolute;
	top: 20px;
	left: 20px;
  bottom: 20px;
  right: 20px;
}