作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何从手写笔 (.styl) 文件导入 Google 字体。我尝试过:
@import url(http://fonts.googleapis.com/css?family=Overlock:400,700,400italic,700italic|Calligraffitti)
...但是在编译时在我的控制台上失败并出现以下错误:
Potentially unhandled rejection [2] ParseError: C:\Users\Coutinho\Documents\GitHub\bespoke-theme-fancy\lib\theme.styl:5
1| // Bespoke Classes: https://github.com/markdalgleish/bespoke-classes
2| // Stylus: http://learnboost.github.io/stylus
3|
4| @import 'normalizecss/normalize.css'
> 5| @import url(http://fonts.googleapis.com/css?family=Overlock:400,700,400italic,700italic|Calligraffitti)
6|
7| $font-family-serif 'Calligraffitti', cursive
8| $font-family-sans 'Overlock', Helvetica, sans-serif
expected ")", got "selector |Calligraffitti)"
谢谢!
最佳答案
将网址括在引号中: @import url('http://fonts.googleapis.com/css?family=Overlock:400,700,400italic,700italic|Calligraffitti')
关于stylus - 如何在 Stylus 文件上导入 Google 字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25411486/
我是一名优秀的程序员,十分优秀!