开发者

How to disable a scroll bar in a html file

开发者 https://www.devze.com 2023-01-06 12:42 出处:网络
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

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;}
0

精彩评论

暂无评论...
验证码 换一张
取 消