freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/basic-css/set-the-font-family-of-an-e...

628 B

id title challengeType videoUrl forumTopicId
bad87fee1348bd9aede08807 设置元素的字体族名 0 https://scrimba.com/c/c3bvpCg 18278

--description--

通过 font-family 属性,我们可以设置元素里的字体族名。

如果你想将 h2 元素的字体设置为 sans-serif,可以这样写:

h2 {
  font-family: sans-serif;
}

--instructions--

请将 p 元素的字体设置为 monospace

--hints--

p 元素应使用 monospace 作为字体。

assert(
  $('p')
    .not('.red-text')
    .css('font-family')
    .match(/monospace/i)
);

--solutions--