Please help me? thank you. I can't pass the step 55 of the block(HTML Forms:look at the picture below)

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

}

input, textarea {
background-color: #0a0a23;
border: 1px solid #0a0a23;
color: #ffffff;
/min-height:2em;/ deleted
}

Test

Sorry, your code does not pass. Keep trying.

Hint

You should move the min-height property and value to the input, textarea, select selector.

please post all the code (you only have part of it)

I’sorry,

body {
width: 100%;
height: 100vh;
margin: 0;
background-color: #1b1b32;
color: #f5f6f7;
font-family: Tahoma;
font-size: 16px;
}

h1, p {
margin: 1em auto;
text-align: center;
}

form {
width: 60vw;
max-width: 500px;
min-width: 300px;
margin: 0 auto;
}

fieldset {
border: none;
padding: 2rem 0;
border-bottom: 3px solid #3b3b4f;
}

fieldset:last-of-type {
border-bottom: none;
}

label {
display: block;
margin: 0.5rem 0;
}

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

input, textarea {
background-color: #0a0a23;
border: 1px solid #0a0a23;
color: #ffffff;
min-height: 2em;
}

.inline {
width: unset;
margin: 0 0.5em 0 0;
vertical-align: middle;
}

click the link that I shared yet,please, that’s language English link.

Hint

You should move the min-height property and value to the input, textarea, select selector.


你要把min-height: 2em;移到正確的位子。

1 Like

Yeah,that’s it.
Thank you very much,thank for your help,
You are the boss. God bless you.

1 Like

Good luck and happy coding!