Help with step 42 on registration form

Q: To give the fieldset elements a bit of separation, select them and give them a border-bottom of 3px solid #3b3b4f .

This is the code I have , but it will not go through help.

fieldset {
border: none;
padding: 2rem 0;
}

fieldset:not(:last-of-type) {

border-bottom:3px solid #3b3b4f;

}

First thing you need to do is click Restart Step, your code is messy.

You already have a “fieldset” selector, you just need to apply new properties with the border-bottom option.

fieldset {
  something: blabla;
  something: blabla;
  border-bottom: 3px solid color;
}

okay , thank you so much it worked

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