Set the Font Family of an Element - zilongxuan001/LearnFreecode GitHub Wiki

理解

为元素设置字体,字体的CSS样式如下

h2 {
   font-family: Sans-serif;
 }

h2 表明设置的是元素h2的样式

font-family 表明设置的是字体属性

Sans-serif 表明字体是Sans-serif

字体 有 Sans-serif,Monospace等

来源

Basic CSS: Set the Font Family of an Element | Learn freeCodeCamp

CHANGELOG

2018-9-29 16:58:01