The first child of each .main-section
should be a header
element.
It’d be better if you provided more information like, your HTML & CSS so we can better understand what exactly the issue is.
Either way, " The first child of each .main-section
should be a header
element. " means that you code should look something like this:
<section class="main-section">
<header></header>
<!-- Other content... -->
</section>
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.