欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

微信小程序——flex弹性布局水平垂直居中

程序员文章站 2022-06-14 11:19:06
...

微信小程序——flex弹性布局水平垂直居中
实现最终效果

<!--index.wxml-->
<view class="body">
  <view class="out">
    <view class='in'>
      <text>in</text>
    </view>
  </view>
</view>
/**index.wxss**/
.body{
  display: flex;
  justify-content: center;  /* 水平居中 */
  align-items: center;  /* 垂直居中 */
}

.out {
  width: 400rpx;
  height: 300rpx;
  background-color: blue;
  display: flex;
  justify-content: center;  /* 水平居中 */
  align-items: center;  /* 垂直居中 */
}

.in {
  width: 150rpx;
  height: 100rpx;
  background-color: red;
}

text{
  font-size: 28px;
  display: flex;
  justify-content: center;  /* 水平居中 */
  align-items: center;  /* 垂直居中 */
}

css将下面三行从text移动到in中依旧可以实现文字in居中

  display: flex;
  justify-content: center;  /* 水平居中 */
  align-items: center;  /* 垂直居中 */

flex布局完整教程链接

相关标签: android