英文:
Disable smooth scroll in Bootstrap 5 with html/css code
问题
I have some anchor links on my website, and when clicking on them - smooth scroll (Bootstrap feature) turns on and it scrolls smoothly.
Due to the specificity of my website I need to disable smooth scrolling in my html or css code.
Thanks in advance!
Found some solutions with some js code, but it's not what I need.
英文:
I have some anchor links on my website, and when clicking on them - smooth scroll (Bootstrap feature) turns on and it scrolls smoothly.
Due to the specificity of my website I need to disable smooth scrolling in my html or css code.
Thanks in advance!
Found some solutions with some js code, but it's not what I need.
答案1
得分: 2
你可以通过在CSS中使用scroll-behavior属性来禁用平滑滚动(在Bootstrap 5中有scroll-behavior: smooth)。
html {
scroll-behavior: auto !important;
}
英文:
You can disable smooth scrolling by using the scroll-behavior property in CSS (there is scroll-behavior: smooth in Bootstrap 5).
html {
scroll-behavior: auto !important;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论