freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/applied-visual-design/set-the-line-height-of-para...

58 lines
1.4 KiB
Markdown
Raw Normal View History

---
id: 587d781d367417b2b2512ac5
title: Set the line-height of Paragraphs
challengeType: 0
videoUrl: ''
localeTitle: 设置段落的行高
---
## Description
<section id="description"> CSS提供了<code>line-height</code>属性来更改文本块中每一行的高度。顾名思义,它会改变每行文本所获得的垂直空间量。 </section>
## Instructions
<section id="instructions"><code>line-height</code>属性添加到<code>p</code>标记并将其设置为25px。 </section>
## Tests
<section id='tests'>
```yml
tests:
- text: 您的代码应将<code>p</code>标记的<code>line-height</code>设置为25像素。
testString: 'assert($("p").css("line-height") == "25px", "Your code should set the <code>line-height</code> of the <code>p</code> tag to 25 pixels.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<style>
p {
font-size: 16px;
}
</style>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</p>
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>