scroll-behavior not being applied html/css [关闭]

kmbjn2e3  于 2023-05-30  发布在  其他
关注(0)|答案(1)|浏览(123)

已关闭,此问题需要details or clarity。目前不接受答复。
**想改善这个问题吗?**通过editing this post添加详细信息并澄清问题。

2天前关闭。
Improve this question
我尝试了所有的选项,但滚动不断跳跃通过部分粗略
html,body{ scroll-behavior: smooth !important; }
我也试过这个……不是一个提示,该怎么做,如果有人知道,我会很感激的帮助,谢谢

elcex8rz

elcex8rz1#

只在css文件或样式标签的第一行中为html选择器指定此属性,如下所示

html{
  scroll-behavior: smooth !important;
}

相关问题