我正在开发适用于Chrome的打包应用。它的启动页面将从localStorage访问数据并以HTML格式输出。
但我的问题是应用程序在一个单独的窗口(shell /面板)中启动,没有滚动条。如何将滚动条带回或作为标签启动?
我知道"launch": {
"local_path": "app.html"
}
技巧,但它是折旧。我正在使用"background": {
"scripts": ["background.js"]
}
答案 0 :(得分:6)
在CSS中为overflow
添加适当的html
样式:
html {
overflow: auto;
}
(根据您的需要,您可能只想使用overflow-x
或overflow-y
)