当我编写SCSS时,我使用@import
语句,如下所示:
@import url(http://fonts.googleapis.com/css?family=Lato|Abril+Fatface);
但是,从技术上讲,在SCSS中,http://
之外的文本已被注释掉。 SCSS / SASS是否仍会阅读其余内容,即使它被注释掉了?
答案 0 :(得分:1)
您必须使用:
@import url("http://fonts.googleapis.com/css?family=Lato|Abril+Fatface");