Building a Registration Form - Step 48

Stuck here

Challenge: Learn HTML Forms by Building a Registration Form - Step 48

Link to the challenge:

learn about the property “border” and it’s values.

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

am i wrong

Solved it


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.