|
Im not sure if this is the correct way to handle this problem, but I tested it out and it works. If you declare a min-height for your container div, it seems to solve the problem. You can just add min-height:100% to #contents.
Also, I dont think you need to put "div" in front of the divs you declare. You have "div#contents", but you should be able to just put "#contents".
It also looks like you are trying to center everything with absolute positioning. It might be easier for you to just put everything in a container div and put "margin: auto" on it.
|