diff --git a/curriculum/challenges/spanish/01-responsive-web-design/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property.spanish.md index 5109899cf3..4a9748f962 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property.spanish.md @@ -7,7 +7,14 @@ 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:
img {
altura: 20px;
}
+
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.
@@ -18,7 +25,7 @@ localeTitle: Ajustar la altura de un elemento usando la propiedad height ```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.");' + testString: 'assert($("h4").css("height") == "25px", "Su código debe cambiar la propiedad de height h4 a un valor de 25 píxeles.");' ```