Please let me know why there is lot of white space below the page content and also why horizontal scroll bar is displayed. Attaching link to zip folder below. Unzip and open index.html.
link text
Please let me know why there is lot of white space below the page
Share
First lead:
The rule
div#contentalmost works in IE, and does put extra width in FireFox:The extra width is applied to your div class ‘
content‘within the div class ‘
container‘horizontal scroll bar is displayed is for the 188px added to the right of the content. Of course, they need to stay: do not remove them.
add
overflow: hidden; to yourdiv#containercss ruleOn a more general note, you may want to follow the ‘Progressive Enhancement with CSS’ best practice, and separate your css rules in several files (up until actual deployment into production, where you may regroup and compress all your css rules into one tight file)