Learn Accessibility by Building a Quiz - Step 39

Tell us what’s happening:

the lesson quest:

Nest one textarea element within the second div.answer element, and set the number of rows and columns it has.

Then, give the textarea placeholder text describing an example answer.

and I recive the “WRONG MESSAGE”:

Sorry, your code does not pass. You're getting there.

You should nest one textarea element within the second div.answer element.

Your code so far

<div class="answer">

</div>
<div class="answer">

  <textarea  cols="20" rows="5" placeholder="I have some questions"></textarea>
</div>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Learn Accessibility by Building a Quiz - Step 39

Welcome to the forum @gunshotbox

The textarea element is nested within the .answer class div element.

However, you have a duplicate div element.

Happy coding

3 Likes

Hey!
Welcome to the FFC forum. Remove your first empty div, you need only one divv with class answer, your challenge will passed. Happy Coding :smile:

4 Likes

thx a lot, i’m done.

<div class="answer">
<textarea  cols="20" rows="5" placeholder="I have some questions"></textarea>
</div>

3 Likes

You’re welcome :hugs: Happy Coding :smile:

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.