Design a Registration Form - Step 42

Step 42

During development, it is useful to see the fieldset default borders. However, they make the content appear too separated.

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.

The solution is :

fieldset {

border: none;

padding: 2rem 0;

}

but the test, doesn’t accept it. showing this error

Sorry, your code does not pass. Keep trying.

You can use either a value of none or 0 to remove the border.

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

I was in Step 42 in Design a Registration Form (Certified Full Stack Developer Curriculum/CSS/Styling Form) for step 42 instruction showing go to CSS style sheet and remove the boarder in fileldset and I do it using giving instruction but When I

do it right way still showing same message (Sorry, your code does not pass. Keep trying. You can use either a value of none or 0 to remove the border.) continually is showing this. I refresh page close the tab but same thing showing I think there is small bug(my opinion ). when I skip the step 42 and go to step 43 from there it showing same answer but if I type same code in step 42 still showing same error. For better understanding i will provide some pictures

Please just post the link to the step and your code instead of a picture.

I went and found the step (please just provide a link) and this exact code is working correctly for me.

I would make sure you have disabled all browser extensions while going through the curriculum, especially those that change your CSS.

in the screenshot it shows you are missing a } to the previous selector, it’s really helpful if you post all your code when you ask for help