如何使用flex对按钮进行布局?
发布于 6 年前 作者 tangxiulan 15212 次浏览 来自 问答

如何将图中的三个按钮放在底部

4 回复

<view class=‘item’>

  <view>

    <button>按钮1</button>

  </view>

  <view>

    <button>按钮2</button>

  </view>

  <view>

    <button>按钮3</button>

  </view>

</view>

page{

  width: 100%;

  height: 100%;

  box-sizing: border-box;

}

.item{

  display: flex;

  height: 100%;

  align-items: flex-end;

  justify-content: space-between;

}

.item>view{

  width: 160rpx;

}

一直都弄不好

回到顶部