The instruction was:
It would be nicer to have the label
text appear above the form elements.
Select all input
, textarea
, and select
elements, and make them take up the full width of their parent elements.
Also, add 10px
of margin
to the top of the selected elements. Set the other margins to 0
.
But when I code with use
input, textarea, select {
margin: 10px 0 0;
}
It tells me later to “add width 100%” error as well.
I think the instruction should tell what they want us to do from the get go.