--- id: bad87fee1348bd9aec908849 title: Aggiungere elementi in un contenitore well challengeType: 0 forumTopicId: 16636 dashedName: add-elements-within-your-bootstrap-wells --- # --description-- Ora siamo a diversi elementi `div` di profondità su ogni colonna della nostra riga. Questa è la profondità a cui dovremo andare. Ora possiamo aggiungere i nostri elementi `button`. Annida tre elementi `button` all'interno di ciascuno dei tuoi elementi `div` di classe `well`. # --hints-- Tre elementi `button` dovrebbero essere annidati all'interno di ciascuno dei tuoi elementi `div` di classe `well`. ```js assert( $('div.well:eq(0)').children('button').length === 3 && $('div.well:eq(1)').children('button').length === 3 ); ``` Dovresti avere un totale di 6 elementi `button`. ```js assert($('button') && $('button').length > 5); ``` Tutti i tuoi elementi `button` dovrebbero avere tag di chiusura. ```js assert( code.match(/<\/button>/g) && code.match(/
```