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

Any idea why this occurs.

Thanks

link|improve this question
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
feedback

closed as not a real question by GenericTypeTea, jeroen, Rich Adams, Shaggy Frog, ChssPly76 Jul 23 '10 at 20:27

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

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;
}
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.