托管应用程序中的滚动条

时间:2013-02-21 13:15:35

标签: google-chrome-extension google-chrome-app

我正在开发适用于Chrome的打包应用。它的启动页面将从localStorage访问数据并以HTML格式输出。 但我的问题是应用程序在一个单独的窗口(shell /面板)中启动,没有滚动条。如何将滚动条带回或作为标签启动? 我知道"launch": { "local_path": "app.html" }技巧,但它是折旧。我正在使用"background": { "scripts": ["background.js"] }

1 个答案:

答案 0 :(得分:6)

在CSS中为overflow添加适当的html样式:

html {
  overflow: auto;
}

(根据您的需要,您可能只想使用overflow-xoverflow-y