出于某种原因,它并没有向我显示任何滚动条。 溢出的内容只是隐藏。
用鼠标中键单击可以滚动。它只是隐藏了滚动条。
尝试使用CSS:
body: {
overflow-x: scroll;
overflow-y: scroll;
}
上面显示了一个禁用/无用的滚动条,即我调整窗口大小,但滚动条保持不起作用。
这个问题在网上几乎没有提及。
使用nwjs-v0.12.3-win-x64。
有谁知道解决方案?我只想要简单的滚动条。
完整的代码在:https://jsfiddle.net/rtk1ebg1/
的package.json:
{
"name": "hello",
"main": "index.html",
"window": {
"title": "Hey!",
"icon": "icon.png",
"toolbar": true,
"position": "center"
}
}
答案 0 :(得分:1)
尝试
body {
overflow: scroll;
}
编辑(忘记主线)
body {
height: 100%;
overflow: hidden;
width: 100%;
}