CSS extra horizontal space [closed]
I have been trying to removing the extra horizontal space coming in my HTML/CSS Page.
Any idea why this occurs.
Thanks
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;
}
精彩评论