In the Registration form project I seem to have a bug on 2 steps.
-First one :
Step 15
Nest an
input
element within each label
. Be sure to add each input
after the label
text, and include a space after the colon.
<label>Enter Your First Name: <input /></label>
<label>Enter Your Last Name: <input /></label>
<label>Enter Your Email: <input /></label>
<label>Create a New Password: <input /></label>
</fieldset></code>
The hint being : Hint
You should add the third input
after the label
text Enter Your Email:
, and include a space after the colon…
NO matter how many spaces I put between the “:” and the input , it does not work. The strange part is that it works for the other lines.
-Second one:
Step 40
Remove the border
, and add 2rem
of padding only to the top and bottom of each fieldset
. Be sure to remove the padding
from the left and right.
I do it with :
fielset {
border: none ;
padding: 2rem 0;
}
which should work if I’m reading the hint correctly: Hint
You can use either a value of none
or 0
to remove the border
.
I tried with 0 and none, I can’t pass the step the normal way.
Am I missing something ?