views:

82

answers:

1

Hi Guys,

I have been trying to removing the extra horizontal space coming in my HTML/CSS Page.

Any idea why this occurs.

Thanks

A: 

add a css property: (replace "html" by whatever element you want)

html {
 overflow: hidden;
}

if you want to be more specific (not sure if it works anywhere but in firefox):

html  {
overflow-x: hidden;
}
Lobsterm