Make WordPress Core


Ignore:
Timestamp:
09/04/2019 04:26:50 PM (6 years ago)
Author:
afercia
Message:

Bundled Theme: Twenty Nineteen: Fix the nesting of the main element.

The main element must not appear as a descendant of the section element. Correct markup is the first requirement to make user agents and assistive technologies work properly.

Changes the <section> element that was wrapping the <main> element to a <div>.

Props albertomake, ryelle, desrosj, ianbelanger, audrasjb.
Fixes #47066.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentynineteen/image.php

    r45209 r45942  
    1111?>
    1212
    13     <section id="primary" class="content-area">
     13    <div id="primary" class="content-area">
    1414        <main id="main" class="site-main">
    1515
     
    9999
    100100        </main><!-- .site-main -->
    101     </section><!-- .content-area -->
     101    </div><!-- .content-area -->
    102102
    103103<?php
Note: See TracChangeset for help on using the changeset viewer.