Css 使用transform:rotate的Htmlservice不通过caja?

Css 使用transform:rotate的Htmlservice不通过caja?,css,google-apps-script,google-caja,Css,Google Apps Script,Google Caja,我有一个脚本doGet,其中我使用HtmlService.createTemplateFromFile服务呈现html文件 在html中,我使用如下样式表 .title { height:100px; width:200px; border-radius:10px; border: 20px solid #404BBD ; font-size:90px; transform: rotate(30deg); -ms-transform: rotate(30deg);

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

在html中,我使用如下样式表

 .title {
  height:100px;
  width:200px;
  border-radius:10px;
  border: 20px solid #404BBD ;
  font-size:90px;
  transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg)
  }
我将其应用于html主体中的div标记。尽管DIV的旋转似乎没有发生,但大多数Css都被应用。
Hello


我是做错了什么还是不接受真正的轮换?

Caja没有将
transform
属性列入白名单。请随意。

Thnks@Kevin Reid,刚刚添加了!