--- id: 60b69a66b6ddb80858c51582 title: Passo 12 challengeType: 0 dashedName: step-12 --- # --description-- Dentro do elemento `characters`, crie outra `div` com um `id` de `offwhite-character`. # --hints-- VocĂȘ deve criar apenas 1 elemento `div` adicional. ```js assert(document.querySelectorAll('div').length === 3); ``` O novo elemento `div` deve estar dentro do elemento `.characters`. ```js assert(document.querySelector('.characters div')); ``` O novo elemento `div` deve ter um `id` definido como `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; } ```