--- id: 587d7791367417b2b2512ab5 title: Adjust the Height of an Element Using the height Property challengeType: 0 videoUrl: '' localeTitle: Отрегулируйте высоту элемента с помощью свойства height --- ## Description
Вы можете указать высоту элемента, используя свойство height в CSS, подобное свойству width . Вот пример, который изменяет высоту изображения на 20 пикселей:
img {
высота: 20 пикселей;
}
## Instructions
Добавьте свойство height в тег h4 и установите его на 25 пикселей.
## Tests
```yml tests: - text: Ваш код должен изменить свойство h4 height на значение 25 пикселей. testString: 'assert($("h4").css("height") == "25px", "Your code should change the h4 height property to a value of 25 pixels.");' ```
## Challenge Seed
```html

Google

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

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