size of broswer

liunx

Guest
Hello <br />
I am wondering what is the max width of a browser that I can use which can prevent using horizontal scroll bar<br />
<br />
Thanks<!--content-->That actually depends on the content of your page.if the contents are flowing out ov view of browser window,it ,by default, will show scroll bars.<br />
The one way to stop browser from behaving like this is to add a the overlow CSS property in the body tag<br />
<br />
<body style="overflow:hidden"><br />
<br />
The above will stop browser from showing the scroll bars,however,you will have to make sure that contents are not going beyond the view able area because it will not be visible<!--content-->
 
Back
Top