记录几种flex布局实例代码模板
公共css123456789101112131415161718192021.body { margin: 0;}.header, .footer, .article, .aside { color: #fff; min-height: 60px; text-align: center; display: flex; align-items: center; justify-content: center;}.header, .footer { background-color: #7dbcea;}.aside { background-color: #3ba0e9;}.article { min-height: 300px; background-color: #108ee9;} 1234567891011121314151617181920212223<view class="body"> <view...