-6

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

Any idea why this occurs.

Thanks

sa2010
  • 19
  • 3
  • 6
  • 7
    You need to provide the code, and point out the exact problem, we have no idea what you are specifically talking about. – R. Hill Jul 23 '10 at 15:31
  • Hi Hill, Sorry the source code looks like mess, code coming from master and content pages. So i'm unable to post the code. My Question belongs generally, How can i remove only Horizontal Scroll bar for html page? – sa2010 Jul 23 '10 at 15:53
  • All browsers or just a specific one? – Jouke van der Maas Jul 23 '10 at 16:29

1 Answers1

2

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;
}
Ted Gueniche
  • 812
  • 9
  • 20