微信小程序里面自定义table表格
wxss:
.table{
border:1px solid #dadada;
border-right:0;
border-bottom: 0;
width: 98%;
margin-left: 1%;
margin-bottom: 20rpx;
}
.tr{
width:100%;
display: flex;
justify-content: space-between;
}
.th,.td{
height: 56rpx;
line-height: 56rpx;
border-bottom: 1px solid #dadada;
border-right: 1px solid #dadada;
text-align: center;
width: 100%;
}
.th{
font-weight: 800;
background-color: #4d94f5;
font-size: 22rpx;
color: #fff;
}
.td{
font-size: 20rpx;
color: #303030;
}
网友评论