--- id: 60b69a66b6ddb80858c51582 title: Step 12 challengeType: 0 dashedName: step-12 --- # --description-- All'interno dell'elemento `characters`, crea un altro `div` con un `id` del valore di `offwhite-character`. # --hints-- Dovresti creare solo 1 elemento `div` aggiuntivo. ```js assert(document.querySelectorAll('div').length === 3); ``` Il nuovo elemento `div` dovrebbe essere annidato nell'elemento `.characters`. ```js assert(document.querySelector('.characters div')); ``` Il nuovo elemento `div` dovrebbe avere un `id` con il valore `offwhite-character`. ```js assert(document.querySelector('.characters div')?.getAttribute('id') === 'offwhite-character'); ``` # --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; } ```