1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| /* pages/systemInfo/systemInfo.wxss */ .table{ border: 1px solid orange; font-size: 40rpx; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; } .tr{ display: flex; width: 100%; justify-content: center; height: 2rem; align-items: center; } .th{ width: 50%; display: flex; justify-content: center; align-items: center; background: #3366ff; color: #fff; height: 2rem; border-right: 1px black solid;
} .th:last-child{ border-right: none; } .td{ width: 50%; display: flex; justify-content: center; align-items: center; text-align: center; height: 2rem; border-right: 1px black solid; border-bottom: 1px black solid; } .td:last-child{ border-right: none; }
|