How to make a button scroll down page in HTML?

后端 未结 2 1211
太阳男子
太阳男子 2021-02-13 20:52

Couldn\'t find a tutorial for this anywhere or just didn\'t use the right keywords. I\'m making a one-paged website, and I\'d like the navigation bar buttons to scroll the page

2条回答
  •  忘了有多久
    2021-02-13 21:35

    Update: There is now a better way to use this, using the HTML id attribute:

    Set the destination id:

    Section 1

    And create a link to that destination using the anchor tag: Go to section 1

    The benefit of this new method is that the id attribute can be set on any HTML element. You don't have to wrap superfluous anchor tags around destination links anymore!

    Original answer:

    You can look at using the HTML anchor tag.

    Section 1

    alongside

    Go to section 1

    When the user clicks on "Go to section 1", they will be sent to the section of the page where the "Section 1" text is displayed.

提交回复
热议问题