0

How do you style the whole page background color of your apps script embedded in a Google sites web page. Currently I could use a div like this.

function doGet() {
  return HtmlService.createHtmlOutput('<div style="background-color:#e9eccf"<h1>Hello</h1><p>Test</p></div>');
  }

Any other ways to CSS style the HtmlService output?

4

1 回答 1

2

通常你会通过对<body>元素应用样式来做到这一点。不幸的是,目前 HtmlService 使用的 Caja 引擎中存在一个错误,导致它无法工作。目前最好的解决方案是使用您可以设置样式的包装 div。

于 2012-09-05T17:43:17.483 回答