Learn Accessibility by Building a Quiz - Step 17

Im already using multiple element selector but still keep giving me an error:
You should use an h2 element selector to target the h2 elements. What is the problem with this code?

h1, h2
{font-family:Verdana Tahoma;
  border-bottom:4px solid #dfdfe2;
}

Please post a link to the step

Right now you are applying the border property to both h1 and h2 .
But that is not what they want.
They just want it to apply to h2 only.

So create another selector for this.

1 Like

Thank you ! this solved my problem.

1 Like

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