Hi, friends. I keep getting this error msg: You should add padding
of 2rem
to the top and bottom of each fieldset
. When I actually already added. Or at least I think I did:
.fieldset{
padding-top:2rem;
padding-botton:2rem}
The exercise is asking: add 2rem
of padding only to the top and bottom of each fieldset
Can anybody help?
I would check the spelling on padding-bottom
, I think you are off by one letter at the end.
good one! but the error is still showing 
What error is that? Please copy/paste it in here.
You should add padding
of 2rem
to the top and bottom of each fieldset
.
That’s not the hint I am getting with your CSS. If I use (adjusted to fix the typo):
.fieldset{
padding-top:2rem;
padding-bottom:2rem
}
I get the following hint:
“Hint: You can use either a value of none
or 0
to remove the border
.”
Are you showing us all of your CSS for this step?
UPDATE: Ahh, I just noticed something else. Your selector is currently targeting any element with a class of fieldset
. You want to target the element fieldset
instead.
1 Like
yes! I am actually getting the same hint.
the first hint I shared with is when I tried to use fieldset as an element without the dot.
either way I am stuck 
This is definitely what you want to do.
1 Like