blob: 828c9abdea294f232e5f86882bde4473f23c5748 [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
body > div {
-webkit-column-count: 2;
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>