微信小程序 设置height:100% 无效果

代码

  .container1{
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #F7F7F7;
  box-sizing: border-box;
}

html

效果 (添加背景颜色没有达到heigh100%)

效果

更正(在wxss中添加为 page)

page{
  height: 100%;
  background-color: #F7F7F7;
}
.container1{
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

间距效果

效果

猜你喜欢

转载自blog.csdn.net/Depressiom/article/details/128549489