hello guys for the below step
- Step 56
To align the input boxes with each other, set the display property to inline-block for all input and label elements within .info elements.
Also, align the text to the right.
.info > label, .info > input {
display: inline-block;
text-align: right;
}
the code is no passing & its giving a hint Hint
You should set the text-align: right property before the .info input rule.