Build a Quiz Step 56

Hello guys!

So I’m at step 56 of the Quiz test and I get the following error:
You should set the text-align: right property before the .info input rule.

Any hints of what/where I might look and write the code?

Thanks in advance!

.info input {
  width: 50%;
  text-align: left;
}

.info label {
  width: 10%;
  min-width: 55px;
}

.info label, .info input {
  display: inline-block;
  text-align: right;
}```

I saw the mistake, just changed the order of the lines and it worked!

.info input, .info label {
  display: inline-block;
  text-align: right;
}

.info input {
  width: 50%;
  text-align: left;
}

.info label {
  width: 10%;
  min-width: 55px;
}

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.