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
scrollIntoView
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; } 0 讨论(0) 查看其它5个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
Javascript
document.getElementsByClassName('stick-to-top')[0].scrollIntoView({behavior: "smooth", block: "center"});
CSS
.stick-to-top { padding-bottom: 400px; }