请告诉我这个 HAML :sass 过滤器语法有什么问题
-content_for :styles do
:sass
#image_column {
width: 200px;
float: right;
padding:15px;
background-color: #eee;
}
错误:“200px”后的 CSS 无效:预期的表达式(例如 1px、粗体)是“;”
-content_for :styles do
:sass
#image_column {
width: 200px;
float: right;
padding:15px;
background-color: #eee;
}
error: Invalid CSS after "200px": expected expression (e.g. 1px, bold), was ";"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您编写的是 SCSS 而不是 SASS。试试这个?
You've written SCSS instead of SASS. Try this?
我使用 SCOUT 和命名文件 example.sass 时遇到类似的
问题错误:
因为我忘记将扩展名更改为 .scss
也许这会有所帮助。
I had similar problem using SCOUT and naming files example.sass
Same error:
Because i forgot change extension to .scss
Maybe this will be helpful.