Hi
I have a table inside a div element that i want to make spread over two columns. Unfortunatly Prince seems to be generating four columns instead of two. Here is my code:
In the html:
<div id="represponsibilities">
<table>
<tr>
<th colspan="2">Repair</th>
<th colspan="2">Responsibility</th>
</tr>
...etc...
</table>
</div>
In the CSS:
#represponsibilities {
column-count: 2;
}
Any ideas why this might be happening?
Cheers
I have a table inside a div element that i want to make spread over two columns. Unfortunatly Prince seems to be generating four columns instead of two. Here is my code:
In the html:
<div id="represponsibilities">
<table>
<tr>
<th colspan="2">Repair</th>
<th colspan="2">Responsibility</th>
</tr>
...etc...
</table>
</div>
In the CSS:
#represponsibilities {
column-count: 2;
}
Any ideas why this might be happening?
Cheers
<><