123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .custom_table tbody:before {
- line-height:5em;
- content:"\200C";
- display:block;
-
- box-sizing: border-box;
- }
- .header {
- border: 1px solid #eee;
- background: #fff;
- box-sizing: border-box;
- width: 100%;
- padding: 0 19px;
- font-size: 15px;
- color:#999;
- }
- .header_content {
- padding-right: 10px;
- padding-left: 10px;
- display: flex;
- justify-content: space-between;
- }
- .header_content th:first-child{
- flex-basis: 33%;
- }
- .row_content{
- background: #fff;
- box-sizing: border-box;
- padding-right: 10px;
- padding-left: 10px;
- display: flex;
- justify-content: space-between;
- }
- .row_content td:first-child{
- flex-basis: 30%;
- }
|