1. 程式人生 > >微信小程式-02(元件應用主要是style應用)

微信小程式-02(元件應用主要是style應用)

目錄

 居中

不換行


邊學邊更新了

居中

<view  class='labelStyle'><label>使用者登陸</label></view>
.labelStyle{
  display: flex;
  align-items: center;
  justify-content: center;  
  width: 100%;
  height: 100%;
  /* 垂直也居中 */
  /* position: absolute */
}

效果

不換行

 


<view style="display:flex; margin-top:30%">
  <label> 賬戶:</label>
  <view class="weui-cells weui-cells_after-title">
    <input type='text' auto-focus  class="weui-input"></input>
  </view>
</view>

效果