ios10.3.3 flex布局不支持flex:1吗?
发布于 7 年前 作者 qtian 6588 次浏览 来自 问答
.gCon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width100vw;
  height100vh;
}

.gCon .Tab {
  width100%;
  height88rpx;
}

.gCon > swiper {
  flex1;
  width100%;
}

iOS0.3.3 swiper高度还是默认高度,并没有占据剩余空间
3 回复

没有10.3.3的机器试,只能提供几个尝试你挨个试试吧。。

1、把 swiper换成一个普通的 view,这样flex:1有效吗?有效的话,可以swiper外面包个flex:1的view,然后swiper 100%高

2、flex: 1换成 flex-grow: 1;

3、试试给 swiper增加不同的 position 及overflow属性

swiper 有默认高度 150px, 需要给 swiper 一个固定高度。例如:100vh

回到顶部