CSS styling code of my html/CSS quiz test

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.

is this a fCC challenge? Please post a link to the challenge or to the description /test area for what you are trying.

HTLM/CSS Quiz

okay here is a tip that may help.
When you click the restart step button and reset the code, do you see a mysteriously blank line at the top of the editor area?

That is where the code is expected to be…

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