简体   繁体   English

如何在导航中添加粘性 class

[英]How to add the Sticky class in Nav

How to add the Sticky class in Nav and how to use the sticky class in css in smoothness for Navigation如何在导航中添加粘性 class 以及如何在导航平滑度中使用 css 中的粘性 class

you could create a css class called "sticky-nav" :您可以创建一个名为"sticky-nav"的 css class :

.sticky-nav {
  position: -webkit-sticky;
  position: sticky;
}

and then apply it to your nav element.然后将其应用于您的导航元素。 For more information you could check out the MDN explanation有关更多信息,您可以查看 MDN 说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM