I dont understant the question, any explanation please?

Tell us what’s happening:
Give the .formrow elements top margin, and left and right padding. The other padding values should be 0.

Then, increase the font size for all input elements.

Your code so far

.formrow {
margin: 5px 0 0 0;
padding: 0 10px;
}
.input {
font-size: 20px;
}
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/102.0.0.0 Safari/537.36

Challenge: Step 53

Link to the challenge:

The challenge wants your to add margin to the top of your element first, then add padding to the left and right side of the element, not adding any padding to the top and bottom i.e the top and bottom should be 0px
finally to pass all test increase the font size of all input elements .
In-sum your code should look something like this.

.className {
  margin-top: ;
  padding: top right bottom left;
}

tagName{
  font-size: ;
}

This code here says select the class input for me and give it a font-size of 20px,
do you have a class called input?

This code says give me top margin of 5px , a right margin of 0px , a bottom margin of 0px and a left margin of 0px.
The instructions says just top margin
The other part of the code says give me a top padding of 0 then a right padding of 10px .
The challenge wants a right and left padding and no padding to the top.

Thank you, I had a brain block :rofl: and have figure it out. I really appriciate your contribution :blush: :handshake: My solution is as below:
.formrow {
margin: 5px 0 0 0;
padding: 0 10px;
}
input{
font-size: 20px;
}

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