我有一个脚本doGet,我使用HtmlService.createTemplateFromFile服务来呈现一个html文件。
在HTML模板的标题部分中有一个样式条目:
<style>
.subtopicp { margin: 5px 7px 5px 7px; border-bottom: 1px solid black;}
.subtopicp:last-child { border-bottom: none;}
</style>
当我将evalueted HTML代码粘贴到文件中但在GAS Web应用中时,.subtopicp:last-child
行永远不会被识别。
像:last-child
这样的CSS选择器根本不能在GAS HtmlService中使用,或者在Caja清理的Web应用程序中是否有针对此类事情的解决方法?