Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<title>CSS Reference</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
.container { width: 100px; font: 20px/1 Ahem; }
.a { width: 100px; height: 20px; margin-bottom: 40px; background: green; }
.b { width: 100px; height: 20px; margin-top: 30px; background: green; }
.c { width: 100px; height: 20px; margin-top: 50px; background: green; }
</style>
<p>Three green squares: 40px gap, then 50px gap.</p>
<div class="container">
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
</div>