Source code

Revision control

Copy as Markdown

Other Tools

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