Possible Duplicate:
Disable browsers vertical and horizontal scrollbars
Can I disable vertical scroll bar in IE.
If you want to disable the scroll bar for a form element, you can use the following code:
style="overflow-y:hidden"
If you want the actual browser to not have a scroll bar, you can apply the same style to the html element.
html {
overflow-y: hidden;
}
If you want to disable both scroll bars:
overflow: hidden
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With