user7864188
user7864188

Reputation:

How do i disable the horizontal scroll bar in Electron BrowserWindow?

How do i disable the horizontal scroll bar in a fixed width and height browser window in Electron?

Thank you.

Upvotes: 10

Views: 33684

Answers (2)

Xarick
Xarick

Reputation: 331

Try to add this in your CSS

::-webkit-scrollbar {
    display: none;
}

Upvotes: 23

flosommerfeld
flosommerfeld

Reputation: 644

I think you just have to disable horizontal scrolling in your HTML file. One way to do so is by using css:

<style>
  body {
    overflow-x: hidden;
  }
</style>

Try to add this in the <head>.

Upvotes: 15

Related Questions