Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Reftest Reference</title>
<link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
<style>
.cols {
column-count: 3;
column-rule: 1px dotted blue;
column-fill: auto;
border: 2px solid blue;
height: 50px;
width: 300px;
}
.innerObject {
height: 200px;
width: 100px;
background: orange;
}
</style>
</head>
<body>
<div class="cols">
<canvas class="innerObject">
<!-- Note: We use a canvas object here as a generic reference for
something monolithic/non-fragmentable. -->
</canvas>
</div>
</body>
</html>