12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* 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: break-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;
- }
|