请问使用flex布局无法让项目在主轴上居中对齐怎么解决?
page.wxml代码如下:
< view class = "page" > < view > < icon type = "info" size = "60" color = "tomato" ></ icon > </ view > < view > < text >本页面仅针对开发者开放</ text > </ view > </ view > |
page.wxss代码如下:
.page{ display: flex; flex-direction: column; justify-content: center; align-items: center
|
想实现的效果: