Hello, I'm having trouble forcing the last page of a 2-column layout to display likewise:
For page 2, I got this instead:
My CSS is as follows:
Did I miss anything? Thanks so much for any help. PrinceXML rocks!
Pg 1
+-----------+
| ---- ---- |
| ---- ---- |
| ---- ---- |
| ---- ---- |
| ---- ---- |
| ---- ---- |
| ---- ---- |
+-----------+
Pg 2
+-----------+
| ---- |
| ---- |
| ---- |
| ---- |
| ---- |
| ---- |
| |
+-----------+
For page 2, I got this instead:
Pg 2
+-----------+
| ---- ---- |
| ---- ---- |
| ---- ---- |
| |
| |
| |
| |
+-----------+
My CSS is as follows:
-moz-column-width:3.35in;
-webkit-column-width:3.35in;
column-width:3.35in;
-moz-column-gap: 20px;
-webkit-column-gap: 20px;
column-gap: 20px;
-webkit-column-break-after:always;
-moz-column-break-after:always;
column-break-after:always;
Did I miss anything? Thanks so much for any help. PrinceXML rocks!