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?
h2
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.
Thank you ! this solved my problem.