<!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> |