Reputation: 23455
If my chrome extension has too much data, a scroll bar shows up and some times it doesnt and just shows a white gap like the screenshot below. Is there a way to disable scroll bars completely? It's currently showing up in my body tag.
Upvotes: 1
Views: 658
Reputation: 622
Remove always the scrollbar from the body
If you access with js
document.documentElement.style.overflow = 'hidden'; // firefox, chrome
document.body.scroll = "no"; // ie only
If you acess with css
body{
overflow: hidden;
}
Upvotes: 1