1

我正在尝试在 Codepan.io 中运行 LESS。
这是我的代码的链接: http: //codepen.io/anon/pen/zhLjI
我刚刚写了这行代码

.user {
  .rotate(90deg);
}

但我从服务器收到以下错误

757: unexpected token at 'Internal Server Error'

知道为什么我的代码不起作用吗?
谢谢

4

1 回答 1

2

你必须定义.rotatemixin。

.rotate(@deg){
  -webkit-transform: rotate(@deg);

}
.user {
  .rotate(90deg);
}

演示

于 2012-10-18T20:33:38.313 回答