Hello everyone!
I have a small problem which I would like some help with. I have a few absolute positioned divs with static width and height (300px) and would like them to contain amongst other a header, a non-static div (or any other suiting structure apart from iframe) with a long list (ul/li) and a footer. The problem I get is when the list is too long for the "container-div" it pushes all objects below out of the div-area.
PHP Code:
------------------------------------------
|| Header
------------------------------------------
||
|| Inner-DIV
||
|| Overflow-scroll on this only
------------------------------------------
|| Footer
-------------------------------------------
- If I set "overflow: auto" or "overflow: scroll" to the "container-div" it won't push the objects outside of the box but put them at the bottom of the scroll which I don't want to happend.
- If I set "overflow: auto" or "overflow: scroll" to the "inner-div" it still pushes the objects outside of the box (shouldn't the list overflow the inner-div? I guess it doesn't since it has no static height).
Bookmarks