「微信小程序开发 | 居中布局」



  块1
  块2
  块3
/* wxss */
.father{
  width: 100%;
  height: 300rpx;
  background-color: lawngreen;
}

.children1{
  background-color: orangered;
}

.children2{
  background-color: yellow;
}

.children3{
  background-color: skyblue;
}

原始效果:
「微信小程序开发 | 居中布局」_第1张图片

一、水平居中
水平居中&水平排列
/* wxss */
.father{
  width: 100%;
  height: 300rpx;
  background-color: lawngreen;
  display: flex;
  justify-content: center;
}

效果:
「微信小程序开发 | 居中布局」_第2张图片

水平居中&垂直排列
/* wxss */
.father{
  width: 100%;
  height: 300rpx;
  background-color: lawngreen;
  display: flex;
  flex-direction: column;
  align-items: center;
}

效果:
「微信小程序开发 | 居中布局」_第3张图片

二、垂直居中
垂直居中&水平排列
/* wxss */
.father{
  width: 100%;
  height: 300rpx;
  background-color: lawngreen;
  display: flex;
  align-items: center;
}

效果:
「微信小程序开发 | 居中布局」_第4张图片

垂直居中&垂直排列
/* wxss */
.father{
  width: 100%;
  height: 300rpx;
  background-color: lawngreen;
  display: flex;
  flex-direction:column;
  justify-content: center;
}

效果:
「微信小程序开发 | 居中布局」_第5张图片

三、中心居中
中心居中&水平排列
/* wxss */
.father{
  width: 100%;
  height: 300rpx;
  background-color: lawngreen;
  display: flex;
  align-items: center;
  justify-content: center;
}

效果:
「微信小程序开发 | 居中布局」_第6张图片

中心居中&垂直排列
/* wxss */
.father{
  width: 100%;
  height: 300rpx;
  background-color: lawngreen;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

效果:
「微信小程序开发 | 居中布局」_第7张图片

关于容器的属性,自己去查吧hiahiahia~

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