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; }
.inner { width: 100px; height: 20px; background: green; }
.sibling { width: 100px; height: 20px; background: green; }
</style>
<p>Two adjacent green squares with no gap.</p>
<div class="container">
<div class="inner"></div>
<div class="sibling"></div>
</div>