scrollIntoView with margin

后端 未结 5 1498
孤独总比滥情好
孤独总比滥情好 2021-02-19 08:14

I have a webpage on which I would like to scroll to a certain element.

That part works fine by using scrollIntoView; but I would like to add a bit of space

5条回答
  •  别跟我提以往
    2021-02-19 09:01

    That helped in my case —
    HTML

    Javascript

    document.getElementsByClassName('stick-to-top')[0].scrollIntoView({behavior: "smooth", block: "center"});
    

    CSS

    .stick-to-top {
     padding-bottom: 400px;
    }
    

提交回复
热议问题