Firefox problem: Make Screen Reader Navigation Easier with the nav Landmark

Tell us what’s happening:
I run my code.
It says…

// running tests

Your code should not have any div tags.

// tests completed

But when I change Firefox to Chrome, I pass with exactly the same code. Why?


Your code so far


<body>
  <header>
    <h1>Training with Camper Cat</h1>

    <nav>
      <ul>
        <li><a href="#stealth">Stealth &amp; Agility</a></li>
        <li><a href="#combat">Combat</a></li>
        <li><a href="#weapons">Weapons</a></li>
      </ul>
    </nav>

  </header>
  <main>
    <section id="stealth">
      <h2>Stealth &amp; Agility Training</h2>
      <article><h3>Climb foliage quickly using a minimum spanning tree approach</h3></article>
      <article><h3>No training is NP-complete without parkour</h3></article>
    </section>
    <section id="combat">
      <h2>Combat Training</h2>
      <article><h3>Dispatch multiple enemies with multithreaded tactics</h3></article>
      <article><h3>Goodbye world: 5 proven ways to knock out an opponent</h3></article>
    </section>
    <section id="weapons">
      <h2>Weapons Training</h2>
      <article><h3>Swords: the best tool to literally divide and conquer</h3></article>
      <article><h3>Breadth-first or depth-first in multi-weapon training?</h3></article>
    </section>
  </main>
</body>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0.

Link to the challenge:

because somethimes saved data aka cookies/catch get in the way…some browsers just save more up then others
we can see this issue with a couple of online games as well
when u won’t recieve an item our some “bug” are in ure way

to know more about browsers i recomend reading:

https://www.webfx.com/internet-marketing/why-does-your-website-look-different-in-different-browsers.html

1 Like