Click here to Skip to main content
15,891,409 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to reduce vertical scroll in webpage
Posted

use "overflow" as hidden.

In your case,
 
Share this answer
 
I assume you are having some padding issues, with stuff being pushed out diferently across diferent browsers - plz consider formulating your question a bit better.

But heres a sure way to fix the majority of padding issues when working with 100% height

CSS
html,body,form{
padding: 0 0 0 0;
margin:0 0 0 0;
width:100%;
height:100%;
}


hope this helps
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900