指南针中的_base.scss和base.scss
我的 scss 文件就像这样...
src/partials/_base.scss
src/base.scss
这里会发生什么? _base.scss 会覆盖 base.scss 中的内容吗?或者他们会合并吗?或者……什么?
My scss files are like so...
src/partials/_base.scss
src/base.scss
What will happen here? Will the _base.scss overwrite what's in base.scss? Or will they be merged? Or...what?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将评估第一个文件,然后评估下一个文件。
对于 compass/sass 来说,具有相同的文件名应该不是问题。
the first file will be evaluated, then the next one.
having the same filename shouldn't be a problem for compass/sass.