--- id: bad87fee1348bd9bec908846 title: Create a Bootstrap Row challengeType: 0 videoUrl: '' localeTitle: Crear una fila Bootstrap --- ## Description
Ahora crearemos una fila Bootstrap para nuestros elementos en línea. Cree un elemento div debajo de la etiqueta h3 , con una clase de row .
## Instructions
## Tests
```yml tests: - text: Agrega un elemento div debajo de tu elemento h3 . testString: 'assert(($("div").length > 1) && ($("div.row h3.text-primary").length == 0) && ($("div.row + h3.text-primary").length == 0) && ($("h3.text-primary + div.row").length > 0), "Add a div element below your h3 element.");' - text: Tu elemento div debe tener la row clase testString: 'assert($("div").hasClass("row"), "Your div element should have the class row");' - text: Su row div debe estar anidada dentro de la container-fluid div testString: 'assert($("div.container-fluid div.row").length > 0, "Your row div should be nested inside the container-fluid div");' - text: Asegúrese de que su elemento div tiene una etiqueta de cierre. testString: 'assert(code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
div element has a closing tag.");' ```
## Challenge Seed
```html

jQuery Playground

```
## Solution
```js // solution required ```