微信小程序——flex弹性布局水平垂直居中
程序员文章站
2022-06-14 11:19:06
...
实现最终效果
<!--index.wxml-->
<view class="body">
<view class="out">
<view class='in'>
<text>in</text>
</view>
</view>
</view>
/**index.wxss**/
.body{
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
.out {
width: 400rpx;
height: 300rpx;
background-color: blue;
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
.in {
width: 150rpx;
height: 100rpx;
background-color: red;
}
text{
font-size: 28px;
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
css将下面三行从text移动到in中依旧可以实现文字in居中
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
上一篇: 虾和茼蒿菜可以搭配出什么样的美食?经常食用的好处?
下一篇: 痛风吃蕨菜可以吗