Registration form STEP 47

Im having trouble understanding what I am doing wrong .

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

fieldset {
  border-bottom: 3px solid #3b3b4f;
  border: none;
  padding: 2rem 0;
}
1 Like

You need to add the border-bottom property below the border property, otherwise applying border: none will override it.

2 Likes

ok i get it thank you

2 Likes

This is absolutely stupid. At no point is it taught that border-bottom needs to go after border. They just expect you to know it without providing any instruction. The teaching methods of this site suck.

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