Learn Accessibility by Building a Quiz - Step 39

Tell us what’s happening:

What values do I put in under the rows and cols of the text-area

Your code so far

<!-- file: index.html -->
<!-- User Editable Region -->

            <div class="answer">
          <text-area rows="1" cols="1"></text-area>
            </div>

<!-- User Editable Region -->
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0

Challenge Information:

Learn Accessibility by Building a Quiz - Step 39

Hey there,
for the rows and cols, you just add the number of rows and colums you want for your text area. However, that’s not the actual issue here. the issue is:

textarea doesn’t need a closing tag. And also there shouldn’t be a -.
Good luck

1 Like