step50 please can anyone help me with that
hi therre,
in cssfile, the you should have different multipleselector classes, if you look carefully you will see one which is for select and input and textarea. It is asked to move the min-height. So you can just put it in this other class and delete it , where it had been before.
can you please write as a code
hi there,
in step 50 your code should look like,( here is only that part that matters for this step)
input,
textarea,
select {
margin: 10px 0 0 0;
width: 100%;
}
input, textarea {
background-color: #0a0a23;
border: 1px solid #0a0a23;
color: #ffffff;
min-height: 2em
}
And now you should take that min-height and put in the other class to match the select-selector as well. You then target all three selectors. The old min-height within the two selectors is no longer necessary.
i do not know why you created a new multiple-selector class, you already got one you can use. In the lines 38 to40 you target the select already.
May be i do not recognize the problem.