I am trying to get the pdf generated by abcPDF from html output to print the first three pages in a portrait, and then switch the fourth page to landscape.
I managed to get html to switch to landscape for the fourth page by applying this class to the div, which is the 4th page:
.PageLandscape {
width="100%";
height="100%";
filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=3);
size:landscape;
}
When abcPDF converts html to pdf, the fourth page still remains portait.
Any thoughts or hints?
thank!
source
share