Step 53 learn Accessibility by building a quiz

.formrow {
  margin-top: 1px;
  margin-left: 1px;
  margin-right: 1px;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 1px;
  padding-left: 1px;
  padding-bottom: 0;
}

after this message persists.

Test
Sorry, your code does not pass. Don’t give up.

Hint
You should use an input selector to target the input elements.

from here IDK what seems to be the problem.

The selector you’re targeting with this rule is the class “formrow”. The hint says to target input elements.

Add input selector but remember input is an element and not a class like .formrow so it will not have .(dot) or .input it will simply be input { …
};

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