You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/**index.wxss**/
|
|
|
|
|
image{
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
border-radius: 50rpx;
|
|
|
|
|
}
|
|
|
|
|
/**容器**/
|
|
|
|
|
.menu{
|
|
|
|
|
height: 2000rpx;
|
|
|
|
|
border: 1rpx solid #ddd;
|
|
|
|
|
/**flex布局**/
|
|
|
|
|
display:flex;
|
|
|
|
|
/**主轴方向布局,行排列row或者列排列column**/
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
/**控制孩子布局,flex-start,center,space-around,space-between**/
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
/**副轴方向布局**/
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.menu .item{
|
|
|
|
|
display:flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
/**控制了文本的**/
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|