1. 程式人生 > >小程式view標籤水平垂直居中

小程式view標籤水平垂直居中

效果圖:
在這裡插入圖片描述
test.wxss程式碼

/* 讓view標籤居中顯示 */
.bgd{
  height: 200rpx;
  display: flex;
  background: black;
  align-items: center;
  justify-content: center;
}
/* 控制view標籤 */
.bg{
  height: 100rpx;
  width: 90%;
}

test.wxml程式碼

<view class='bgd'>
  <view  class='bg' style='background: url(../images/307.png);background-size:100% 100%;'> </view>
</view>