Learn HTML Forms by Building a Registration Form - Step 56

I’m not sure what is wrong here.

/* User Editable Region */

input[type=“submit” display=“block” width=“60%”]

/* User Editable Region */


**Your browser information:**

User Agent is: <code>Mozilla/5.0 (X11; CrOS x86_64 14816.131.5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36</code>

**Challenge:** Learn HTML Forms by Building a Registration Form - Step 56

**Link to the challenge:**
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-forms-by-building-a-registration-form/step-56

Hello!

Your code is very close to passing.

The closing for the should be after the submit value.
You still need the selector, and then just put the rest of your code, both on separate lines with the ; (semicolon) after them. I think you will pass.

Happy coding! :slight_smile:

It didn’t work but thanks for trying to help.

what does your code look like now?

1 Like

Hi!
Could you please post your updated code (using the help) for us to see if we can find the issue for you?
Thank you for posting your code.
image

Happy coding!

Thanks!

Happy coding! :slight_smile:

input[type=“submit”]
display=“block”;
width=“60%”;

It keeps saying this by the way: “You should use an attribute selector of input[type=“submit”] to style the submit button.”

it’s important to remember that = is not what separates values from properties in css.

it’s :

display:block;

alright, I found out before i saw the message but thanks. I did need to change a few things. thanks for the help guys.

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