--- id: 60facf914c7b9b08d7510c2c title: Step 34 challengeType: 0 dashedName: step-34 --- # --description-- The `textarea` appears too small. To give it an initial size, you can add the `rows` and `cols` attributes. Add an initial size of `3` rows and `30` columns. # --hints-- You should give the `textarea` a `rows` attribute with value `3`. ```js assert.equal(document.querySelector('fieldset:nth-child(3) > label:nth-child(4) > textarea')?.rows, 3); ``` You should give the `textarea` a `cols` attribute with value `30`. ```js assert.equal(document.querySelector('fieldset:nth-child(3) > label:nth-child(4) > textarea')?.cols, 30); ``` # --seed-- ## --seed-contents-- ```html
Please fill out this form with the required information
``` ```css body { width: 100%; height: 100vh; margin: 0; background-color: #1b1b32; color: #f5f6f7; } label { display: block; margin: 0.5rem 0; } ```