Stuck at Building a Registration Form Step 46

Instruction was to 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’s my code:
fieldset {
border: 0;
}

Im getting this error:
You can use either a value of none or 0 to remove the border .

Appreciate your help

hi!! @whackiez65
welcome to the forum “FCC” :grin:

you have to add the attribute “padding:” to your field set selector and put it to 2rem

1 Like

Thanks for checking. I did this:
fieldset {
border: 0;
padding-top: 2rem;
padding-bottom: 2rem;
padding-left: 0;
padding-right: 0;
}

but was still getting the same error

It’s funny, I also went through the same thing. :sweat_smile:

but my help helped you?

2 Likes

did it work on your end when you used the same code? i might need to redo the whole thing T_T

its funny. I reset the step 46 and re enter the same code and it worked! Haha. Looks like you need to reset the specific step to refresh if the correct code is read incorrect. Appreciate your help :slight_smile:

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

1 Like

No, I’m just saying that almost the same thing happened to me, I only realized it when I read the instructions carefully.

1 Like

yes :sweat_smile: but a tip to learn better is to understand or pay more attention when you read the instructions

1 Like

Yes, appreciate that. Silly me always trying to get things done as fast as possible :sweat_smile:
Thanks again cheers!

It’s a pleasure, a pleasure to talk to you. :blush:

1 Like

sir i take your code it pass