Step 47 css can't fix this instruction

Tell us what’s happening:
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 .

Your code so far
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 .

**Your browser information:**

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36</code>

**Challenge:**  Step 47

**Link to the challenge:**
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-forms-by-building-a-registration-form/step-47
1 Like

input,

textarea {

background-color: #0a0a23;

border: 1px solid;

}

2 Likes

The instructions ask for

1px , solid border with a color of #0a0a23

I think you forgot to add the color on the border selector.

1 Like

hi. the solution is

input,textarea {

background-color: #0a0a23;

border: 1px solid #0a0a23 ;

}

4 Likes

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