2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: bad87fee1348bd9aede08807
|
2021-01-08 11:20:48 -08:00
|
|
|
title: 设置元素的字体族名
|
2018-10-10 18:03:03 -04:00
|
|
|
challengeType: 0
|
2019-12-13 13:47:57 +08:00
|
|
|
videoUrl: 'https://scrimba.com/c/c3bvpCg'
|
|
|
|
forumTopicId: 18278
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: set-the-font-family-of-an-element
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --description--
|
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
通过 `font-family` 属性,我们可以设置元素里的字体族名。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
如果你想将 `h2` 元素的字体设置为 `sans-serif`,可以这样写:
|
2019-12-13 13:47:57 +08:00
|
|
|
|
|
|
|
```css
|
|
|
|
h2 {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --instructions--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
请将 `p` 元素的字体设置为 `monospace`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --hints--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2021-01-08 11:20:48 -08:00
|
|
|
`p` 元素应使用 `monospace` 作为字体。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
$('p')
|
|
|
|
.not('.red-text')
|
|
|
|
.css('font-family')
|
|
|
|
.match(/monospace/i)
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
# --seed--
|
|
|
|
|
|
|
|
## --seed-contents--
|
|
|
|
|
|
|
|
```html
|
|
|
|
<style>
|
|
|
|
.red-text {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<h2 class="red-text">CatPhotoApp</h2>
|
|
|
|
<main>
|
|
|
|
<p class="red-text">Click here to view more <a href="#">cat photos</a>.</p>
|
|
|
|
|
2021-09-22 08:34:59 -07:00
|
|
|
<a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
|
2021-01-13 03:31:00 +01:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<p>Things cats love:</p>
|
|
|
|
<ul>
|
|
|
|
<li>cat nip</li>
|
|
|
|
<li>laser pointers</li>
|
|
|
|
<li>lasagna</li>
|
|
|
|
</ul>
|
|
|
|
<p>Top 3 things cats hate:</p>
|
|
|
|
<ol>
|
|
|
|
<li>flea treatment</li>
|
|
|
|
<li>thunder</li>
|
|
|
|
<li>other cats</li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<form action="https://freecatphotoapp.com/submit-cat-photo">
|
|
|
|
<label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
|
|
|
|
<label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
|
|
|
|
<label><input type="checkbox" name="personality" checked> Loving</label>
|
|
|
|
<label><input type="checkbox" name="personality"> Lazy</label>
|
|
|
|
<label><input type="checkbox" name="personality"> Energetic</label><br>
|
|
|
|
<input type="text" placeholder="cat photo URL" required>
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
```
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --solutions--
|
2019-12-13 13:47:57 +08:00
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
```html
|
|
|
|
<style>
|
|
|
|
.red-text {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<h2 class="red-text">CatPhotoApp</h2>
|
|
|
|
<main>
|
|
|
|
<p class="red-text">Click here to view more <a href="#">cat photos</a>.</p>
|
2021-02-06 04:42:36 +00:00
|
|
|
|
2021-09-22 08:34:59 -07:00
|
|
|
<a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
|
2021-02-06 04:42:36 +00:00
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
<div>
|
|
|
|
<p>Things cats love:</p>
|
|
|
|
<ul>
|
|
|
|
<li>cat nip</li>
|
|
|
|
<li>laser pointers</li>
|
|
|
|
<li>lasagna</li>
|
|
|
|
</ul>
|
|
|
|
<p>Top 3 things cats hate:</p>
|
|
|
|
<ol>
|
|
|
|
<li>flea treatment</li>
|
|
|
|
<li>thunder</li>
|
|
|
|
<li>other cats</li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
2021-02-06 04:42:36 +00:00
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
<form action="https://freecatphotoapp.com/submit-cat-photo">
|
|
|
|
<label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
|
|
|
|
<label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
|
|
|
|
<label><input type="checkbox" name="personality" checked> Loving</label>
|
|
|
|
<label><input type="checkbox" name="personality"> Lazy</label>
|
|
|
|
<label><input type="checkbox" name="personality"> Energetic</label><br>
|
|
|
|
<input type="text" placeholder="cat photo URL" required>
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
```
|