美文网首页
fixed 元素width设定

fixed 元素width设定

作者: 2020路飞 | 来源:发表于2020-07-29 16:19 被阅读0次
    .wrapper {
        max-width: 500px;
        border: 1px solid red;
        height: 5500px;
        position: relative;
    }
    
    
    .fix {
        max-width: inherit;
        width: 100%;
        height: 20px;
        position:fixed;
        background: black;
    }
    
    fixed元素脱离文档流,设定width:inherit 无效

    相关文章

      网友评论

          本文标题:fixed 元素width设定

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