I want borders on both sides of my landscape pages except on the cover page. On the cover page, I only want a border on the left side. I tried doing
.cove-page {
page: cover-page auto;
}
@page cover-page {
border-right: #ffff;
}
But it didn't remove the border.
If I remove auto from the 1st line. It does remove the right border but it changes the page from landscape to portrait.
I did add
@page cover-page {
border-right: #ffff;
size: landscape;
}
But this leads to one extra blank page at the top of the cover-page.
How can I resolve this?
.cove-page {
page: cover-page auto;
}
@page cover-page {
border-right: #ffff;
}
But it didn't remove the border.
If I remove auto from the 1st line. It does remove the right border but it changes the page from landscape to portrait.
I did add
@page cover-page {
border-right: #ffff;
size: landscape;
}
But this leads to one extra blank page at the top of the cover-page.
How can I resolve this?
Edited by sscore