当前位置: 首页 > Web前端 > CSS

antd表格样式修改

时间:2023-03-30 13:59:34 CSS

.ant-table-wrapper{宽度:98%;高度:100%;位置:相对;top:30px;}.ant-table{背景色:rgb(9,100,100);color:white;}//标题样式.ant-table-thead>tr>th{background-color:rgb(3,50,50);color:white;}//修改选中行的样式.ant-table-tbody{>tr:hover:not(.ant-table-expanded-row)>td,.ant-table-row-hover,.ant-table-row-hover>td{background-color:rgb(18,75,75)!important;}}//去掉边框,保留右边框&&表格内容居中&&行高。文本对齐:居中!重要;padding:10px10px!important;}//去掉表头最右边的边框。ant-table-containertable>thead>tr:first-childth:last-child{border-right:none;}//去掉tbody最右边框.ant-table-containertable>tbody>trtd:last-child{border-right:none;}//暂无数据样式ant-empty-description{color:white;}//奇数行.table-color-odd{background-color:rgb(9,100,100);}//偶数rows.table-color-even{background-color:rgb(19,147,147);}