Hi,
I have a page of dynamic content of arbitrary length, followed by another similar page. I want to ensure that each page is no more than one page, and that any further content that would otherwise be on it is just cropped.
Something, in theory, like:
Does anyone have any suggestions to make this work?
I have a page of dynamic content of arbitrary length, followed by another similar page. I want to ensure that each page is no more than one page, and that any further content that would otherwise be on it is just cropped.
Something, in theory, like:
<div id="page1">Page one content, should be cropped after 1 page</div>
<div id="page2">Page two content, should be cropped after 1 page</div>
#page1, #page2 {
width: 100%;
height: 100%;
overflow: hidden;
}
Does anyone have any suggestions to make this work?