Skip to content

Instantly share code, notes, and snippets.

@52cik
Created May 29, 2016 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save 52cik/14ad8137462f6cc678d70c4845e577be to your computer and use it in GitHub Desktop.
Save 52cik/14ad8137462f6cc678d70c4845e577be to your computer and use it in GitHub Desktop.
font-family 最优重置
/**
* 为了避免字体混乱的局面,Neat.css 统一了 font-family 的设置。
*
* 1. 中文字体选择如下:
* Windows 优先使用「微软雅黑」,如果没有则使用「中易宋体(SimSun)」。
* OS X 优先使用「冬青黑体简体(Hiragino Sans GB)」,如果没有则使用默认的「华文黑体」。
* Linux 优先使用「文泉驿微米黑」。
*
* 2. 西文字体选择如下:
* Windows 优先使用「Arial」。
* OS X 优先使用「Helvetica Neue」
*/
/**
* 1. 防止元素中「font-family」不能继承
* 2. 西文字体和 OS X 字体写在前面
* 3. Opera 12.1 之前版本不支持中文字体的英文名称
* 4. 微软雅黑「\5FAE\8F6F\96C5\9ED1」,中易宋体「\5B8B\4F53」
*/
body,
button, /* 1 */
input, /* 1 */
select, /* 1 */
textarea /* 1 */
{
font-family: 'helvetica neue',arial,'hiragino sans gb',stheiti,'wenquanyi micro hei',\5FAE\8F6F\96C5\9ED1,\5B8B\4F53,sans-serif;
}
/**
* 注意:IE 中部分表单元素并不能识别以上 font-family 中的「微软雅黑」,会以「中易宋体(SimSun)」显示。
*/
/*********************************************************************************************/
/**
* 1. 代码字体选择如下:
* Windows 优先使用 Consolas。
* OS X 优先使用 Monaco。
*/
code,
kbd,
pre,
samp {
font-family: monaco, menlo, consolas, 'courier new', courier, monospace;
}
/**
* 如果开发者对所选字体没有充分了解,不建议重新定义 font-family 。
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment