I have a page that I want the height to automatically adjust based on content, but if I do height:100%;, height:auto;, or min-height:100%;, it doesn’t work. What can I do to fix this?
Here’s my website page: http://ht.io-web.com/tutor-registration
Why are you setting a height when you only want it to expand to the dimensions of its contents? If you leave out height, it will expand as needed as you fill the container with content.
Could you describe the problem in your page in more detail, and possible give us a code example? I will update my answer to better help you.
From the links you gave, it looks like you need to clear your floats. Try adding
overflow:auto;to the container div in question.