--- id: bad87fee1348bd9aede08807 title: Set the Font Family of an Element challengeType: 0 videoUrl: 'https://scrimba.com/c/c3bvpCg' forumTopicId: 18278 localeTitle: 设置元素的字体家族 --- ## Description
通过font-family属性,可以设置元素里面的字体样式。 如果你想设置h2元素的字体为sans-serif,你可以用以下的 CSS 规则: ```css h2 { font-family: sans-serif; } ```
## Instructions
确保p元素使用monospace字体。
## Tests
```yml tests: - text: 'p元素应该使用monospace字体。' testString: assert($("p").not(".red-text").css("font-family").match(/monospace/i)); ```
## Challenge Seed
```html

CatPhotoApp

点击查看更多猫图.

一只仰卧着的萌猫

猫咪最喜欢的三件东西:

  • 猫薄荷
  • 激光笔
  • 千层饼

猫咪最讨厌的三件东西:

  1. 跳蚤
  2. 打雷
  3. 同类


```
## Solution
```html // solution required ```