已解决
微信小程序手写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%的人还看了
相似问题
- 〖大前端 - 基础入门三大核心之JS篇㊲〗- DOM改变元素节点的css样式、HTML属性
- QT中样式表常见属性与颜色的设置与应用
- vue.js中使用三元运算符设置动态样式
- 修改el-radio-group样式,自定义单选组件
- el-popover和el-tooltip样式修改(普通的组件样式修改方法,对popover是不生效的)
- 禁止点击-样式及事件不可用
- css实现原生form表单label必填选项红色*样式,以及js控制必填校验
- duilib 实现登录界面 之 样式设计
- 用css实现原生form中radio单选框和input的hover已经focus的样式
- CSS---关于font文本属性设置样式总结
猜你感兴趣
版权申明
本文"微信小程序手写table表格":http://eshow365.cn/6-38945-0.html 内容来自互联网,请自行判断内容的正确性。如有侵权请联系我们,立即删除!
- 上一篇: windows nodejs 15.0.0下载安装
- 下一篇: 选硬币该用动态规划