美文网首页微信小程序
微信小程序里面自定义table表格

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

作者: 杀个程序猿祭天 | 来源:发表于2018-04-02 12:58 被阅读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;

    }

    相关文章

      网友评论

        本文标题:微信小程序里面自定义table表格

        本文链接:https://www.haomeiwen.com/subject/zonthftx.html