scrollIntoView with margin

后端 未结 5 1497
孤独总比滥情好
孤独总比滥情好 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 08:45

    You can set scroll-margin CSS attribute on the scroll target element. For example

    .blue {
      scroll-margin: 20px;
    }
    

    https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-margin

提交回复
热议问题