--- id: 587d7791367417b2b2512ab5 title: Adjust the Height of an Element Using the height Property challengeType: 0 videoUrl: '' localeTitle: Ajustar la altura de un elemento usando la propiedad height --- ## Description
Puede especificar la altura de un elemento utilizando la propiedad de height en CSS, similar a la propiedad de width . Aquí hay un ejemplo que cambia la altura de una imagen a 20px: ```css img { height: 20px; } ```
## Instructions
Agregue una propiedad de height a la etiqueta h4 y configúrela a 25px.
## Tests
```yml tests: - text: Su código debe cambiar la propiedad de height h4 a un valor de 25 píxeles. testString: 'assert($("h4").css("height") == "25px", "Su código debe cambiar la propiedad de height h4 a un valor de 25 píxeles.");' ```
## 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 ```