This is for my ebook app. Height of the columns will vary. So image location is difficult to predict. I use -webkit-column-break-before: always; to preserve images from being divided between columns. But this method leaves empty space.
Is it possible to fill empty space in the second column with text from the last? What do you think?
https://jsfiddle.net/rg9kvnys/
#mydiv{
width:1000px;
height:200px;
-webkit-column-width:200px;
border-style:solid;
}
#image{
box-sizing:border-box;
border-style:solid;
border-color:red;
background-color:lightblue;
height:100%;
-webkit-column-break-before: always;
}
