blob: df3671fbe9bb2c2f993f98cb88be8894d80d249e [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
body > div {
-webkit-column-count: 2;
-webkit-column-fill: auto;
column-count: 2;
column-fill: auto;
width: 51px;
position: absolute;
left: 0px;
top: 0px;
}
div > div {
width: 10px;
height: 10px;
background-color: green;
border: 1px solid black;
position: relative;
}
</style>
<body>
<div>
<div></div>
<div></div>
</div>
</body>