Few browsers shows default scrollbars forexample IE. To hide default scrollbars in html, it is very simple. the following code can hide scrollbars. keep this code in head part of the html. <style> html,body{ overflow:hidden; } </style>
↧