Performance: Nav element
LOW IMPACT
Using the <nav> element affects page structure clarity and accessibility, which can indirectly impact rendering and user experience.
<nav aria-label="Primary navigation"> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> </ul> </nav>
<div class="navigation"> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> </ul> </div>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Using <div> for navigation | Minimal | 0 | Minimal | [!] OK |
| Using semantic <nav> element | Minimal | 0 | Minimal | [OK] Good |