--- id: 587d7791367417b2b2512ab5 title: Adjust the Height of an Element Using the height Property localeTitle: Ajustar la altura de un elemento usando la propiedad height challengeType: 0 videoUrl: '' --- ## 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:
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", "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 ```