I have a container div with the following
CSS
#container {
column-count:2;
}
Inside the div container there are several other divs, as shown in
HTML
<div id="container">
<div id="box1"></div>
<div id="box2"></div>
<div id="box3"></div>
</div>
Is there a way to force "box2", for example, into the left column.
Thank,
Jack
source
share