微信小程序view居中

微信小程序view居中_第1张图片

wxml文件

 
    申请服务商店

 

   
     

   

   
           
           

   


wxss文件

.main{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inputView{
  border: 1px solid #abbcbc;
  background-color: white;
  border-radius: 10px;
  width:80%;
  margin-top: 10px;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.buttonlayout{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 50px;
}
.center{
  display: flex;
  justify-content: center;
}
.button1{
  width:30%;
}
.button2{
  width:45%;
}




你可能感兴趣的:(微信小程序view居中)