Tell us what’s happening: I am not sure what is wrong, I think I did what the task asked for and what the hint suggested, but the code is still wrong.
The task: To make the first section look more inline, target only the input
elements within .info
elements, and set their width
to 50%
, and left-align their text.
The hint: You should use either the .info input
or .info > input
selector.
Your code so far
.info input
{
width: 50%;
text-align: left;
}
Challenge Information:
Learn Accessibility by Building a Quiz - Step 55