|
Dec 18
2010
|
Remove Horizontal Scrolling in CSSPosted by bohemia in Untagged |
|
There may come a time when you want to disallow horizontal scrolling in the browser. One reason may be that you use a fluid template. Another reason could be that it looks messy if someone scrolls to the right.
Simple, you can go to the CSS stylesheet and write the following in the body id or class.
overflow-x: hidden;
Now, you can reload the page and the horizontal scroll bar should be be gone.
Simple, you can go to the CSS stylesheet and write the following in the body id or class.
overflow-x: hidden;
Now, you can reload the page and the horizontal scroll bar should be be gone.




