I am using the following CSS to split a div's text in 2 columns :
.twocolumns {
padding:10px;
width:80%;
-moz-column-count: 2;
-moz-column-gap: 10px;
-webkit-column-count: 2;
-webkit-column-gap: 10px;
column-count: 2;
column-gap: 10px;
}
I am working in a magazine project, for which the text needs to be displayed in multiple pages(A4). I was wondering if with some extra CSS I can make the content, when it gets to the bottom of the page(overflow), to continue in another div ("page"). Is that possible?