美文网首页
表格固定列行错位

表格固定列行错位

作者: Hasan_hs | 来源:发表于2022-08-17 14:52 被阅读0次
//表格固定列错位问题
.ant-table-body {
 overflow: overlay !important;
 padding-right: 16px;
 padding-bottom: 16px;
}
//没有数据时去掉padding
.ant-table-empty .ant-table-body {
 padding-right: 0;
 padding-bottom: 0;
}
.ant-table-placeholder {
 border-top: 0;
}
// .ant-table-body tr:last-child td {
//   border-bottom: 0;
// }
// .ant-table-tbody tr:last-child td {
//   border-bottom: 0;
// }
//可编辑表格,表单验证提示文字撑开高度问题
//--给表格父级元素增加tableEdit
.tableEdit .ant-form-item-control {
 height: 45px;
}
//处理tab角标遮盖文字问题
.ant-tabs-tab .ant-badge-count{
 right: -16px;
}

相关文章

网友评论

      本文标题:表格固定列行错位

      本文链接:https://www.haomeiwen.com/subject/couegrtx.html