我有一个脚本 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都已应用。
<div class="title">Hello</div>
我做错了什么或者Google Caja不接受真正的轮换?