Hi,
I have a webpage that presents information in to columns, like this:
| Information1 | Information2 |
| 111 | 222 |
| 111 | 222 |
| 111 | 222 |
| 111 | 222 |
I want to be able present a new window (which will be sort of a print preview) that acctually is the same page, but with the content restructured i rows, preferrable by css, like this:
-----------------------
Information1
111
111
111
-----------------------
Information2
222
222
222
Is that possible, for example by using the div-tag to mark up the different parts and place the divs on different places depending on if it's the original page or the print priview page.
Just to clarify, both the original page and the print priview page will be the same jsp-page.
Best regards!
I have a webpage that presents information in to columns, like this:
| Information1 | Information2 |
| 111 | 222 |
| 111 | 222 |
| 111 | 222 |
| 111 | 222 |
I want to be able present a new window (which will be sort of a print preview) that acctually is the same page, but with the content restructured i rows, preferrable by css, like this:
-----------------------
Information1
111
111
111
-----------------------
Information2
222
222
222
Is that possible, for example by using the div-tag to mark up the different parts and place the divs on different places depending on if it's the original page or the print priview page.
Just to clarify, both the original page and the print priview page will be the same jsp-page.
Best regards!