--- id: 60facde2d0dc61085b41063f title: Step 37 challengeType: 0 dashedName: step-37 --- # --description-- L'elemento `textarea` si comporta come un elemento `input` con il type `text`, ma ha il vantaggio di poter contenere un testo multi-riga e un numero iniziale di righe di testo e colonne. Gli utenti saranno in grado di registrarsi con una descrizione. Aggiungi un elemento `label` con il testo `Provide a bio:` alla fine del `fieldset`. Aggiungi un elemento `textarea` all'interno dell'elemento `label`. Nota che l'elemento `textarea` richiede un tag di chiusura. # --hints-- Dovresti aggiungere un elemento `label` alla fine del terzo elemento `fieldset`, dopo gli elementi `label` esistenti. ```js assert.exists(document.querySelector('fieldset:nth-child(3) > label:nth-child(4)')); ``` Dovresti assegnare all'etichetta `label` il testo `Provide a bio:`. ```js assert.match(document.querySelector('fieldset:nth-child(3) > label:nth-child(4)')?.innerText, /Provide a bio/); ``` Dovresti annidare un elemento `textarea` all'interno dell'elemento `label`. ```js assert.exists(document.querySelector('fieldset:nth-child(3) > label:nth-child(4) > textarea')); ``` Dovresti assegnare i tag di apertura e chiusura all'elemento `textarea`. ```js assert.match(code, /[\s\S]*<\/textarea\s*>/); ``` # --seed-- ## --seed-contents-- ```html Registration Form

Registration Form

Please fill out this form with the required information

--fcc-editable-region--
--fcc-editable-region--
``` ```css body { width: 100%; height: 100vh; margin: 0; background-color: #1b1b32; color: #f5f6f7; } label { display: block; margin: 0.5rem 0; } ```