On 8/8/20 8:55 AM, Per Bothner wrote:

     <section class="section" id="section-42">
       <div class="header">Next/Previous etc links </div>
       <div class="node">
         <h3 class="section" id="character42-1">This is section 4.2</h3>
         <p>text for 4.2</p>
         </div>
     </section>

Note the id="character42-1" should go on the <div class="node"> if we use this 
layout:

    <section class="section" id="section-42">
      <div class="header">Next/Previous etc links </div>
      <div class="node" id="character42-1">
        <h3 class="section">This is section 4.2</h3>
        <p>text for 4.2</p>
        </div>
    </section>

Putting it on the h3 was left over from an earlier version using <header>:

    <section class="section" id="section-42">
      <!--Alternative layout using <header> -->
      <div class="node">
        <header>
          <div class="header">Next/Previous etc links </div>
          <h3 class="section" id="character42-1">This is section 4.2</h3>
        </header>
        <p>text for 4.2</p>
        </div>
    </section>

However, I'm leaning towards *not* using <header>, at least until we
see a use for it.
--
        --Per Bothner
[email protected]   http://per.bothner.com/

Reply via email to