Learn HTML Forms by Building a Registration Form - Step 48

Hey, I am wondering what my issue is below,
any hints on my syntax
I get this error message:

You should give the input and textarea elements a 1px, solid border with a color of #0a0a23.

input,
textarea,
select {
margin: 10px 0 0 0;
width: 100%;
}

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

Any help/hints appreciated!





       **Your browser information:**

User Agent is: <code>Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36</code>

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

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

“,” does not appear in value for border key in textarea, input

1 Like
I did have a comma, but its coming back wrong, do you mean this? 

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

@atdilshan0127

2 Likes

Yes :two_hearts: I mean This. :grinning:
Your Code is Correct :+1:

1 Like

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