--- id: bad87fee1348bd9aec908848 title: Creare degli elementi incassati con Bootstrap challengeType: 0 forumTopicId: 16825 dashedName: create-bootstrap-wells --- # --description-- Bootstrap ha una classe chiamata `well` che può creare un effetto di profondità per le tue colonne. Nidifica un elemento `div` con la classe `well` dentro a ognuno dei tuoi elementi `div` di classe `col-xs-6`. # --hints-- Dovresti aggiungere un elemento `div` di classe `well` all'interno di ciascuno dei tuoi elementi `div` di classe `col-xs-6` ```js assert($('div.col-xs-6').not(':has(>div.well)').length < 1); ``` Entrambi i tuoi elementi `div` di classe `col-xs-6` dovrebbero essere annidati nel tuo elemento `div` di classe `row`. ```js assert($('div.row > div.col-xs-6').length > 1); ``` Tutti i tuoi elementi `div` dovrebbero avere un tag di chiusura. ```js assert( code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/

jQuery Playground

``` # --solutions-- ```html

jQuery Playground

```