<view class="rega" v-if="isActive==3"> <block v-for="(item,index) in team" key="index"> <view class="zxc"> <view style="display: table;width: 100%;margin-left: -25px;"> <view style="display: table-cell;width: 30%;text-align: center;"> <text>{{index+1}}</text> </view> <view style="display: table-cell;width: 30%;text-align: center;"> <text>{{item.name}}</text> </view> <view style="display: table-cell;width: 30%;text-align: center;"> <text>{{item.phone}}</text> </view> </view> </view> </block> </view>.zxc { float: left; width: 90%; height: 110px; background-color: #fff; margin-top: 20px; margin-left: 18px; border-radius: 10px; }让显示的内容位于zxc标签的上下左右的最中间
时间: 2024-03-23 22:40:04 浏览: 90
所示的路-flask的图形化管理界面搭建框架flask-admin的使用教程
可以使用flex布局来实现将内容在zxc标签的上下左右的最中间显示。具体做法是在.zxc样式中设置display为flex,然后使用justify-content和align-items属性将内容在水平和垂直方向上居中。示例代码如下:
```
.zxc {
display: flex;
justify-content: center;
align-items: center;
float: left;
width: 90%;
height: 110px;
background-color: #fff;
margin-top: 20px;
margin-left: 18px;
border-radius: 10px;
}
```
阅读全文