美文网首页
微信小程序 设置height 100%不起作用

微信小程序 设置height 100%不起作用

作者: OnceWas | 来源:发表于2018-03-29 16:47 被阅读0次

    问题:小程序设置背景图片高度适应整个屏幕,设置height 100% 不起作用?

    .container-all{

    width:100%;

    height:100%;

    }

    .bg-img{

    width:100%;

    height:100%;

    display:block;

    }

    解决办法:在上面添加一个page 样式就可以解决

    page{

    height:100%;

    }

    .container-all{

    width:100%;

    height:100%;

    }

    .bg-img{

    width:100%;

    height:100%;

    display:block;

    }

    相关文章

      网友评论

          本文标题:微信小程序 设置height 100%不起作用

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