美文网首页
iPhoneX适配问

iPhoneX适配问

作者: yyshang | 来源:发表于2018-02-12 15:59 被阅读10次

    ```

    html:

    <div class="main">

    你自己的页面内容

    </div>

    ```

    css

    ```

    @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {

      .main{padding-top:44px;padding-bottom: 34px;}

      .main:before{content:"";display:block;position: fixed;width:100%;height:44px;background-color:#15d6ba;top:0;left: 0;z-index:9999;}

      .main:after{content:"";display:block;position: fixed;width:100%;height:34px;bottom:0;left: 0;z-index:9999;}

    }

    ```

    结果完美

    相关文章

      网友评论

          本文标题:iPhoneX适配问

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