Learn HTML Forms by Building a Registration Form - Step 52

Step 52

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.

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

please help me how to solve this step

It helps if you provide the link to the challenge.

When you have the border property and set values of that, all of its children are going to be invalid and set to default.
When you set values to “border” it is sufficient to give all the values in the same line.
Ex: border: 1px shape #color;

Hope this helps.

1 Like

Thank man I got it now

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