Learn Accessibility by Building a Quiz - Step 56

I keep getting the following message even I use the selectors.
" You should use either a .info > label, .info > input or .info label, .info input selector."

My code for the step so far.

.info input {
width: 50%;

}

.info label {
width: 10%;
min-width: 55px;
}
.info lable,.info input{
display:inline-block;
text-align:right;
}

hi there, ( just a typo )
i really looked into the challenge before being a b l e to recognise the little mistake here.
Short hint: have a closer look to your .info label, info input.

WRONG > .info lable, .info input {
GOOD> .info label, .info input {

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