Tell us what’s happening:
help me to understand what value should i use for the font-size for the input selector.
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.
Step 54
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.
.formrow {
margin-top: 1px;
margin-left: 1px;
margin-right: 1px;
padding-right: 1px;
padding-top: 0;
padding-bottom: 0;
padding-left: 1px;
}
inpu {
font-size: 1em;
}
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36
Challenge Information:
Learn Accessibility by Building a Quiz - Step 54