123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* myComponents/table/table.wxss */
- .table-box{
- height: 100%;
- overflow-x: auto;
- padding-bottom: 40rpx;
- }
- .table {
- margin: 0 auto;
- display: table;
- border-collapse: collapse;
- overflow-x: auto;
- /* word-break: keep-all; */
- /* white-space: nowrap; */
- background-color: #FFFFFF;
- width: 90%;
- border-radius: 20rpx;
- }
- .tr {
- display: table-row;
- }
- .th {
- display: table-cell;
- padding: 0 10rpx;
- height: 60rpx;
- line-height: 60rpx;
- text-align: center;
- border: 1rpx solid #DDDDDD;
- border-right: none;
- border-bottom: none;
- background-color: #10c52e;
- color: #FFFFFF;
- }
- .td {
- padding: 0rpx 30rpx;
- display: table-cell;
- height: 60rpx;
- line-height: 60rpx;
- text-align: center;
- border: 1rpx solid #DDDDDD;
- border-right: none;
- }
|