美文网首页
position新属性sticky

position新属性sticky

作者: 丶灰太狼他叔 | 来源:发表于2019-06-17 16:42 被阅读0次

    sticky:粘性的意思。简单的来说就是元素在页面内部时,表现为relative。滚动到屏幕之外时表现为fixed。
    简单代码实例:

    nav {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
    

    更多详细介绍:https://www.zhangxinxu.com/wordpress/2018/12/css-position-sticky/

    相关文章

      网友评论

          本文标题:position新属性sticky

          本文链接:https://www.haomeiwen.com/subject/ftqzfctx.html