|
1.api的使用 2.flex-direction 弹性容器方向
<view style="display : flex;flex-direction:row">
<view class="textview1">
<text>
你好啦
</text>
</view>
<view class="textview1">
<text>
你好啦
</text>
</view>
<view class="textview1">
<text>
你好啦
</text>
</view>
</view>
3.Justify-content 弹性项目在主轴项目上的main-axis(X轴)线上的对齐方向
<view class="classname" style="display :flex; flex-direction:row ; justify-content:flex-start"> 4.align-items
5.微信小程序的事件交互
|