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

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 .

can you show the code also what u r doing so that it will be easy to find the error

input,textarea{

background-color:#0a0a23;

background:1px solid #0a0a23;

}

ok now it is easy in your 2nd line u should add border instead of background because 1px solid is the value of border , hope you understood, if not reply

input,textarea{

background-color:#0a0a23;

border: 1px solid black;

}

done i got it thank you

input,

textarea{

background-color:#0a0a23;

border:1px solid #0a0a23;

}

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