Learn HTML Forms by Building a Registration Form - Step 45

Here are the instructions to step 45 of the tutorial which i am currently stuck on.

Remove the border , and add 2rem of padding only to the top and bottom of each fieldset . Be sure to remove the padding from the left and right.

Here is my code that i am running and is not letting me proceed.
Can someone please help me and tell me where I am going wrong.

fieldset {
  border-style: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
}

You should remove your padding from the left and right completely by deleting it and not just setting it to zero.
Also if you are stuck by a specific step this might make it easier for you to be clear on your question:

Welcome to the community!
I suggest removing the border-styling, as there is not to be any border.

The other should be fine, or you could do it the short way of
padding: and just enter the two different values as the system recognizes the first value as top and bottom and the second value as left and right.

I hope this helps you.

Happy coding! :slight_smile:

I guess it’s a bug? From next step we could know the solution should be:
Mod edit: removed

Please don’t give any code to pass any challenges thanks

Okay, I’ll keep that in mind.

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