chore(i18n,curriculum): update translations (#41832)

This commit is contained in:
camperbot
2021-04-15 23:21:59 +09:00
committed by GitHub
parent 986275a6bc
commit f17ae493b9

View File

@ -1,6 +1,6 @@
--- ---
id: bad87fee1348bd9aec908746 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 challengeType: 0
forumTopicId: 18198 forumTopicId: 18198
dashedName: house-our-page-within-a-bootstrap-container-fluid-div 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-- # --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-- # --hints--
Your `div` element should have the class `container-fluid`. Tu elemento `div` debe tener la clase `container-fluid`.
```js ```js
assert($('div').hasClass('container-fluid')); 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 ```js
assert( 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 ```js
assert($('div').children('h3').length > 0); assert($('div').children('h3').length > 0);