I am trying to create a layout with one column on the first page and two columns on all subsequent pages. The flow of text would be continuous from the first page to the next—i.e., the first page isn't a separate section I can wrap in a div.
At first I had this column CSS for the body element:
Then I added
Is it possible to get this effect, different column numbers per page, with Prince/CSS3?
Please forgive me if I'm misunderstanding something obvious about the @page elements.
At first I had this column CSS for the body element:
columns: 2;
column-gap: 1.5em;
Then I added
columns: 1;
to @page:first, but it had no effect. I tried moving the 2 column code from body to @page, but then columns didn't work at all.Is it possible to get this effect, different column numbers per page, with Prince/CSS3?
Please forgive me if I'm misunderstanding something obvious about the @page elements.