--- id: 587d7791367417b2b2512ab5 title: Ajustar la altura de un elemento con la propiedad height challengeType: 0 videoUrl: 'https://scrimba.com/c/cEDaDTN' forumTopicId: 301034 dashedName: adjust-the-height-of-an-element-using-the-height-property --- # --description-- Puedes especificar la altura de un elemento con la propiedad `height` en CSS como lo haces con la propiedad `width` (ancho). En el siguiente ejemplo, se cambia la altura de una imagen a 20px: ```css img { height: 20px; } ``` # --instructions-- Añadir la propiedad `height` a la etiqueta `h4` y establecerlo a 25px. **Nota:** Puede que necesites tener un zoom de 100% para pasar la prueba de este desafío. # --hints-- El código debe cambiar la propiedad `height` del `h4` a un valor de 25 píxeles. ```js assert( Math.round(document.querySelector('h4').getBoundingClientRect().height) === 25 && /h4{\S*height:25px(;\S*}|})/.test($('style').text().replace(/\s/g, '')) ); ``` # --seed-- ## --seed-contents-- ```html

Google

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

``` # --solutions-- ```html

Google

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

```