Step 40 registration form

Stuck on step 40 in the registration form, someone please tell me where I’m going wrong here, thanks in advance!

Step 40

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.
my attempt=

fieldset {
border: 0;
padding: 2em /* only top and bottom */;
}

fieldset {
border: 0;
padding: 2em /* only top and bottom */;

u cant use “comment styles attributes” to set “top and bottom”
u need to use a specific attribute for that… else the css engine wont understand

example… with margin… u could use a longhand style… which u can provide all values for top left bottom and right values…
ie: margin: 1px 2px 3px 4px;
or a “shorthand” to just set a specific value to one of those sides
ie: margin-top: 1px;

1 Like

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