--- id: bad87fee1348bd9aec908849 title: Add Elements within Your Bootstrap Wells challengeType: 0 videoUrl: '' localeTitle: Agrega elementos dentro de tus cajas de Bootstrap --- ## Descripción
Ya tenemos varios elementos div en cada columna de nuestra fila. No necesitamos ahondar más. Ahora podemos añadir nuestros elementos button. Anida tres elementos button dentro de cada uno de sus elementos well div.
## Instrucciones
## Tests
```yml tests: - text: Anida tres elementos button dentro de cada uno de tus elementos div con clase well. testString: 'assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3, "Nest three button elements within each of your div elements with class well.");' - text: Deberías tener un total de 6 elementos button. testString: 'assert($("button") && $("button").length > 5, "You should have a total of 6 button elements.");' - text: Asegúrate de que todos los elementos de tus button tengan etiquetas de cierre. testString: 'assert(code.match(/<\/button>/g) && code.match(/
## Challenge Seed
```html

jQuery Playground

```
## Solución
```html

jQuery Playground

```