I know it in the spec stylesheets but why was this made like this?

    • sanderiumOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      1 day ago

      It is number 2,

      <body>
          <main>
              <article>
                  <h1>Post Title</h1>
                  <h2>Post "Topic"</h2>
              </article>
          </main>
      </body>
      

      Doing now the same as some developers I found:

      <body>
          <main> 
              <h1>Post Title</h1>
              <article>
                  <h2>Post "Topic"</h2>
              </article>
          </main>
      </body>
      

      Im asking because I found this question on stackoverflow for the section tag