Learn Accessibility by Building a Quiz - Step 56

Can’t Find what I should do or put the text-align on this particular step… I did it individually, before the input selector, between the label and the combined selectors and always is the same error: that I should put it before the combined selector…


and if I put it before then is like I didn’t did anything to my labels and input…

Please provide link to the challenge step, and consider to paste your code here.

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

here typo is present

also error message gives you some advice about order of selectors
In this step it’s important, which selector comes first.

Thanks!.. I could figure it out now

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