--- id: 60b69a66b6ddb80858c51585 title: Step 15 challengeType: 0 dashedName: step-15 --- # --description-- Crea alcuni "pallini" per lo strumento. Aggiungi cinque elementi `div` all'interno dell'elemento `gray-instrument`. Imposta l'attributo `class` di ciascuno su `black-dot`. # --hints-- Dovresti avere cinque nuovi elementi `div` all'interno dell'elemento `#gray-instrument`. ```js assert(document.querySelectorAll('#gray-instrument div').length === 5); ``` Tutti e cinque gli elementi `div` dovrebbero avere la classe `black-dot`. ```js assert(document.querySelectorAll('#gray-instrument .black-dot').length === 5); ``` # --seed-- ## --seed-contents-- ```html Picasso Painting
--fcc-editable-region-- --fcc-editable-region--
``` ```css body { background-color: rgb(184, 132, 46); } #back-wall { background-color: #8B4513; width: 100%; height: 60%; position: absolute; top: 0; left: 0; z-index: -1; } ```