当前位置:首页 > 编程笔记 > 正文
已解决

微信小程序手写table表格

来自网友在路上 190890提问 提问时间:2023-11-19 05:20:01阅读次数: 90

最佳答案 问答题库908位专家为你答疑解惑

wxml

<view class="table"><view class="tr bg-w"><view class="th">张三</view><view class="th" style="color: #409eff;">李四</view><view class="th ">王五</view><view class="th ">赵六</view></view><block><view class="tr bg-g"><view class="td">男</view><view class="td" style="color:#409eff">男</view><view class="td">女</view><view class="td">男</view></view></block>
</view>

wxss:想加其他样式得可以自己+

.tr {display: flex;width: 100%;justify-content: center;height: 3rem;align-items: center;
}.td {width: 40%;justify-content: center;text-align: center;
}.th {width: 40%;justify-content: center;/* color: #fff; */display: flex;height: 3rem;align-items: center;
font-size: 15px;
}

总结:有循环的可以自己填写数据

查看全文

99%的人还看了

猜你感兴趣

版权申明

本文"微信小程序手写table表格":http://eshow365.cn/6-38945-0.html 内容来自互联网,请自行判断内容的正确性。如有侵权请联系我们,立即删除!