Help! i am stuck

Tell us what’s happening:

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Step 56

Link to the challenge:

You didn’t tell us what you are stuck on or show us your code, so we can’t see what you need help with!

You still have not

  1. used words to describe what help you actually need

  2. shown us your code

All we can see from that link is what you are supposed to do, not what code you have written or where you got stuck.

You should set the text-align: right property before the .info input rule

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

i need you to kindly explain what i was supposed to do here

Do you still have the original two rules that were in the editable region?


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

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

Do you have all three together?

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

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

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

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

You should set the text-align: right property before the .info input rule.

Order matters in CSS. You need the new rule to come before the two older rules.

I am not still getting it can you write out the code

No. It is against the rules for us to write the answer for you.

This is your new rule. It must come before you other two rules:

Thanks I have solved it

1 Like

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