微信小程序

微信小程序里面自定义table表格

2018-04-02  本文已影响82人  杀个程序猿祭天

微信小程序里面自定义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;

}

上一篇 下一篇

猜你喜欢

热点阅读