公告
财富商城
积分规则
提问
发文
2019-04-13 16:00发布
闹够了就滚
How do i disable the horizontal scroll bar in a fixed width and height browser window in Electron?
Thank you.
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>.
最多设置5个标签!
I think you just have to disable horizontal scrolling in your HTML file. One way to do so is by using css:
Try to add this in the <head>.