Why does my page not scroll to the top when clicked?

Viewed 18

The line is: <li class="nav-item"><a class="active nav-link me-lg-3" href="#">About me</a></li>

But for some reason the page does not scroll to the top of the page.

E.g. when I'm at the bottom of the page and I click the About me in the navbar, the page should scroll up.

1 Answers

Probably the easiest way is a link that targets an ID on the element:

 <html id="top">
  <body>
     <!-- the entire document -->
     <a href="#top">Jump to top of page</a>
  </body>
 </html>
Related