How to disable a scroll bar in a html file
How to disable a scroll bar in a html file ...when i dou开发者_高级运维ble click on the html file, i dont want the html to load with scroll bars
Thanks regards - Miss subanki
Disabling a scroll bar in a Frame in a Web Browser can be done with CSS
<iframe class="dnb" src="http://dotnetblogger.com" width="300" height="300"></iframe>
<style>
iframe.dnb{overflow:hidden;}
<style>
As per your edit, you can do the same thing in a standard page by disabling scroll bars in the body
body{overflow:hidden;}
精彩评论