Hello,
I have not found a solution, how to create a multicolumn layout.
I mean not a table with three columns, but a div with arbitrary text that automatically breaks into three columns, for example using CSS:
<div style="column-count: 3; column-gap: 5mm;">Lorem ipsum ...</div>
How is that achieved?
Alex.
gmic Le 05/11/2013 à 10:04 Have you find a way to create this 3 columns ? I'm looking for it too...
guppy Le 07/11/2013 à 22:27 You must give IDs to each of your DIVs - and then in CSS give the restrictions you want in terms of positioning, margins, height, width...
#div1 {
position:absolute;
top:87mm;
width:90mm;
margin-left:100mm;
font-size:13px;
height:105mm;
}
The example is not for a three column setup but it is the way to go...
Hope this will bring you further.