From f17ae493b98a64868872f0858c804193db800d4c Mon Sep 17 00:00:00 2001 From: camperbot Date: Thu, 15 Apr 2021 23:21:59 +0900 Subject: [PATCH] chore(i18n,curriculum): update translations (#41832) --- ...ur-page-within-a-bootstrap-container-fluid-div.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/curriculum/challenges/espanol/03-front-end-libraries/bootstrap/house-our-page-within-a-bootstrap-container-fluid-div.md b/curriculum/challenges/espanol/03-front-end-libraries/bootstrap/house-our-page-within-a-bootstrap-container-fluid-div.md index 452f52ab47..c335abb07c 100644 --- a/curriculum/challenges/espanol/03-front-end-libraries/bootstrap/house-our-page-within-a-bootstrap-container-fluid-div.md +++ b/curriculum/challenges/espanol/03-front-end-libraries/bootstrap/house-our-page-within-a-bootstrap-container-fluid-div.md @@ -1,6 +1,6 @@ --- id: bad87fee1348bd9aec908746 -title: House our page within a Bootstrap container-fluid div +title: Aloja nuestra página dentro de un container-fluid de Bootstrap div challengeType: 0 forumTopicId: 18198 dashedName: house-our-page-within-a-bootstrap-container-fluid-div @@ -8,19 +8,19 @@ dashedName: house-our-page-within-a-bootstrap-container-fluid-div # --description-- -Now let's make sure all the content on your page is mobile-responsive. +Ahora asegurémonos de que todo el contenido de tu página sea compatible con dispositivos móviles. -Let's nest your `h3` element within a `div` element with the class `container-fluid`. +Anidemos tu elemento `h3` dentro de un elemento `div` con la clase `container-fluid`. # --hints-- -Your `div` element should have the class `container-fluid`. +Tu elemento `div` debe tener la clase `container-fluid`. ```js assert($('div').hasClass('container-fluid')); ``` -Each of your `div` elements should have closing tags. +Cada uno de tus elementos `div` deben tener etiquetas de cierre. ```js assert( @@ -30,7 +30,7 @@ assert( ); ``` -Your `h3` element should be nested inside a `div` element. +Tu elemento `h3` debe estar anidado dentro de un elemento `div`. ```js assert($('div').children('h3').length > 0);