Code checker issue @ Learn HTML Forms by Building a Registration Form - Step 46?

Hi

I am going through “Learn HTML Forms by Building a Registration Form - Step 46”.
I manage to get to step 47 by myself but I think there is an issue with the code checker.

When I copy/paste the solution I got at step 47 in step 46, it does not validate the code when using none for border. It only works when using 0. (Even border: none is used in the solution code at step 47 )

Regards
Matt

I cant see your code but maybe you should place your border:none attribute above the border-bottom so that the bottom border doesn’t get cancelled.

2 Likes

Hi

Thank you for reply, as I said, I manage to pass the step so no code, but I notice this :

fieldset {
border: none;
padding: 2rem 0;
}
→ doesn’t pass the test (even it is used in the next step …)

fieldset {
border: 0;
padding: 2rem 0;
}
→ pass the test

My guess was the code checker has an issue.

I didn’t know where to put this feedback.

Thank you
Matt

1 Like

Congrats on passing the step! :tada: :sparkles:
Are you talking about step 46?
I copied and pasted your code and both ways worked for me so its possible that you have an extension or something which is changing it?

Hi
Thanks.

Yes I had the issue at step 46.
Indeed, I just try with chrome, it worked with both code. I had this issue with safari (with my only extension - Zotero - activated or deactivated).

Matt

1 Like