I'm formatting XML, not HTML, with prince 6 and 7beta, but I can't get the column-span property work properly.
In my DTD, there's an element <tc> which means "table-cell" and it has an attribute "colonne" whose meaning is "column-span". Here's a fragment of my CSS:
tc {
display: table-cell;
text-align: left;
padding: 2pt;
}
tc[colonne="2"] {
column-span: 2;
}
tc[colonne="3"] {
column-span: 3;
}
The attribute "colonne" seems to be ignored, I always get a 1-column spanning cell.
In my DTD, there's an element <tc> which means "table-cell" and it has an attribute "colonne" whose meaning is "column-span". Here's a fragment of my CSS:
tc {
display: table-cell;
text-align: left;
padding: 2pt;
}
tc[colonne="2"] {
column-span: 2;
}
tc[colonne="3"] {
column-span: 3;
}
The attribute "colonne" seems to be ignored, I always get a 1-column spanning cell.