HTML&CSS - Position fixed

by Code_Garage

HTML

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

CSS

body {
  min-height: 600px;
}
.container {
  font-family: arial;
  font-weight: bold;
  width: 50px;
  height: 50px;
  margin: 5px;
  padding: 5px;
  color: white;
  box-sizing: border-box;
}
#red {
  background: #e74c3c;
	position: fixed;
	top: 3px;
	left: 65px;
}
#blue {
  background: #3498db;
}