--- id: 587d781d367417b2b2512ac5 title: Set the line-height of Paragraphs challengeType: 0 videoUrl: '' localeTitle: Задайте высоту строки абзацев --- ## Description
CSS предлагает свойство line-height для изменения высоты каждой строки в блоке текста. Как следует из названия, он изменяет количество вертикального пространства, которое получает каждая строка текста.
## Instructions
Добавьте свойство line-height в тег p и установите его на 25 пикселей.
## Tests
```yml tests: - text: Ваш код должен установить line-height тега p до 25 пикселей. testString: 'assert($("p").css("line-height") == "25px", "Your code should set the line-height of the p tag to 25 pixels.");' ```
## Challenge Seed
```html

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.

```
## Solution
```js // solution required ```