I need to compose a page which has a header and a footer, and some textual content in between.
The page size is fixed (an iframe) and has a fixed-height footer, but the header's content can change (it's translated thus the number of text lines varies). Both header and footer should never have a scrollbar. If the content between them is long, a scrollbar should be added to the content itself. Whatever I do, I can't get this to work CSS-only. I either have a scroll to the entire page (or the top area, including the header), or the content div's text extends beyond it's borders.
Here's a fiddle to exemplify my problem: http://goo.gl/u1iTz (I want a scroll for the green area only)
Oh, and without JavaScript... :)
Thanks.