Please help me out. I have been stock on this quiz for days now trying to pass this code. Below are the information and code.
Instructions: 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.
My code:
.info input {
width: 50%;
}
.info label {
width: 10%;
min-width: 55px;
}
.info label, .info input{
display: inline-block;
text-align: right;
Hint: You should set the text-align: right property before the .info input rule.