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: 200px; font: 20px/1 Ahem; color: green; }
.first { width: 200px; height: 20px; margin-bottom: 40px; background: blue; }
.intervening { float: left; width: 80px; height: 60px; background: yellow; }
</style>
<p>Blue rectangle, 40px gap, then 'XX' alongside the yellow float.</p>
<div class="container">
<div class="first"></div>
<div class="intervening"></div>
XX
</div>