Remove the Scrollbar
If you want to hide the scrollbar in web page, please apply the CSS settings below:
1 2 3 4 5 6 7 8 9 10 11 12 |
<html> <head> <title></title> <style type="text/css"> body { margin-left: 0px; margin-top: 0px; overflow: hidden; } </style> </head> <body> </body> </html> |
---|
Note |
---|
You can also remove browser scrollbar from SMP's Web Manager. |