Skip to content

Instantly share code, notes, and snippets.

@shhider
Created September 25, 2017 09:23
Show Gist options
  • Save shhider/d86e9692510f828fea95aad687da9708 to your computer and use it in GitHub Desktop.
Save shhider/d86e9692510f828fea95aad687da9708 to your computer and use it in GitHub Desktop.

1、

@font-face {
  font-family: BASE;
  src: local('PingFang SC'),
       local("Microsoft Yahei");
}

不需要预处理工具也可以用「变量」管理字体了。

2、

@font-face {
  font-family: quote;
  src: local('SimSun');    
  unicode-range: U+201c, U+201d;
}

可以让指定的 unicode 字符应用指定的字体。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment