I have a table wrapper like this:
My default styling is
Now I want to override this for specific tables:
The latter styles are not applied, not even with "important" or if I increase specificity.
There is another bug related to these properties.
Can you please check? I'm using Prince 12.4.
Thank you.
<div class="box-table"><table... </table></div>
My default styling is
.box-table {
float:top;
column-span: all;
}
Now I want to override this for specific tables:
<div class="box-table box-table2"><table... </table></div>
.box-table2 {
float: column-bottom;
column-span: none;
}
The latter styles are not applied, not even with "important" or if I increase specificity.
There is another bug related to these properties.
Can you please check? I'm using Prince 12.4.
Thank you.
Edited by ThePrintingSquirrel