h5页按钮组固定在底部

2021-08-31  本文已影响0人  前端雨

h5页固定在底部的按钮

  1. 问题
  1. 方案

    <div class="wrap">
        <div class="content">
        </div>

        <div class="footer>
        </div>
    </div>

    .wrap{
        display:flex;
        flex-direction:column;
        height:100%;
    }
    .footer{
        height:1rem;
        width: 100%;
        position: fixed;
        bottom:0;
        left:0;
    }

    .content{
        overflow-y:auto ;
        flex-shrink: 1;
        flex-grow: 1;
    }

上一篇下一篇

猜你喜欢

热点阅读