<!DOCTYPE html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
--><html><head><meta charset="utf-8">
<title>CSS Test Reference</title>
<link href="mailto:ecoal95@gmail.com" rel="author" title="Emilio Cobos Álvarez">
<style>
.container {
  background: gray;
  height: 500px;
  width: 250px;
}
.panel {
  background: lightblue;
  border: 1px solid purple;
  height: 100px;
}
</style>
</head><body><div class="container">
  <div class="panel">
  </div>
  <div class="panel">
  </div>
</div>
</body></html>