sass 怎么把@import 不用引入出来
1 回答
芜湖不芜
TA贡献1796条经验 获得超7个赞
实际上,@import并不是一定要在最前面
W3C的CSS2.1标准中,对@import作了以下规定:
In CSS 2.1, any @import rules must precede all other rules (except the @charset rule,if present).
在CSS2.1中,任何@import命令必须放在所有其它语句之前(除了用到@charset时)。
而在CSS3标准中,则是这样规定:
Any ‘@import’ rules must follow all ‘@charset’ rules and precede all other at-rules and rule sets in a style sheet.
在样式表中,任何@import命令必须紧跟在@charset命令之后(如果有的话),放在其它@命令和样式语句之前。
- 1 回答
- 0 关注
- 1085 浏览
添加回答
举报
0/150
提交
取消