1

我有一个脚本 doGet,我在其中使用 HtmlService.createTemplateFromFile 服务来呈现 html 文件。

在 HTML 模板的标题部分有一个样式条目:

<style>
  .subtopicp { margin: 5px 7px 5px 7px; border-bottom: 1px solid black;}
  .subtopicp:last-child { border-bottom: none;}
</style>

当我将评估的 HTML 代码粘贴到文件中时,此方法有效,但在 GAS Web 应用程序中,该.subtopicp:last-child行永远无法识别。

像 GAS HtmlService 这样的 CSS 选择器是否:last-child 根本无法使用,或者在 Caja 净化的 Web 应用程序中是否有解决此类问题的方法?

4

1 回答 1

0

:last-child不在 Caja 的白名单中。您可以请求添加它。

于 2013-05-15T18:37:18.640 回答