Learn HTML Forms by Building a Registration Form - Step 55

This step seems legitimately broken?

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

Link to the challenge:

" Step 55

To style the submit button, you can use an attribute selector, which selects an element based on the given attribute value. Here is an example:

input[name="password"]

The above selects input elements with a name attribute value of password.

Now, use the attribute selector to style the submit button with a display of block, and a width of 60%."

My code is this:

input[type="submit"] {
 display: block;
 width: 60%;
}

which is how attribute selectors work – I’m getting red squiggle on the opening square bracket and then throughout as well, and it keeps saying my code is wrong. I have also tried using a name=“submit” instead of type

Your solution as quoted here works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

1 Like

Thanks, yeah I had to do the hard browser refresh I guess.

1 Like

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