Https://www.freecodecamp.org/learn/2022/responsive-web-design/#learn-html-forms-by-building-a-registration-form

Hi,
I’m struck at Step 51,
Tried many combinations but no luck.
Following is my code.
Requirement:

Step 53

To make the input and textarea elements blend in with the background theme, set their background-color to #0a0a23. Then, give them a 1px, solid border with a color of #0a0a23.

My Solution:
input, textarea {

border: 1px, solid, #0a0a23;
background-color:#0a0a23;
}

Please advise what is my mistake.

Weblink for Step 53:

I found the solution.

input, textarea {
background-color: #0a0a23;
border: 1px solid #0a0a23;

}

Issue resolved.

We have blurred this solution (with [spoiler][/spoiler] tags) so that users who have not completed this challenge can read the discussion in this thread without giving away the solution.

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