手写笔ParseError:预期为“缩进”,为“突出”
Unable to compile Stylus file app/css/app.styl to CSS: ParseError: app/css/provider.styl:22
18| padding-top: 20px
19| text-align: center
20| border-bottom: 1px solid white
21| margin-bottom: 25px
> 22|
23| .aclass
24| display: none
25|
expected "indent", got "outdent"
我在这里做错了什么?感谢您提供有关此错误的任何信息!
最佳答案
从其他库转换CSS文件时,我倾向于得到此信息。通常,它与包含过滤器属性的附近规则有关。
当规则包含任何Microsoft“progid”时,您需要转义整个值。
filter: unqoute("progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b80ff', endColorstr='#1d66d3', GradientType=0)")
-ms-filter: unquote("progid:DXImageTransform.Microsoft.Alpha(Opacity=50)")
最后,手写笔具有内置的 alpha 函数,因此您需要使用取消引用quott 来对其进行转义,如下所示:
filter: unquote("alpha(opacity=50)")
关于node.js - 手写笔ParseError : expected “indent” ,得到了 “outdent”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6593683/