font-size

font-size CSS 属性指定字体的大小。因为该属性的值会被用于计算em和ex长度单位,定义该值可能改变其他元素的大小。

font-style

font-style CSS 属性允许你选择 font-family 字体下的 italic 或 oblique 样式。

font-weight

font-weight CSS 属性指定了字体的粗细程度。 一些字体只提供 normal 和 bold 两种值。

font-family

CSS 属性 font-family 允许您通过给定一个有先后顺序的,由字体名或者字体族名组成的列表来为选定的元素设置字体。
属性值用逗号隔开。浏览器会选择列表中第一个该计算机上有安装的字体,或者是通过 @font-face 指定的可以直接下载的字体。

  • When the name of a typeface consists of more than one word, it’s a best practice to enclose the typeface’s name in quotes
    1. .mydiv>p:nth-child(1) {
    2. font-size: larger;
    3. font-style: italic;
    4. font-weight: 100;
    5. font-family: Arial, Helvetica, sans-serif;
    6. }