antd table 样式修改

Posted 咿呀咿呀哟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了antd table 样式修改相关的知识,希望对你有一定的参考价值。

.ant-table-wrapper {
  width: 98%;
  height: 100%;
  position: relative;
  top: 30px;
}
.ant-table {
  background-color: 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;
  }
}
// 去除边框,留右边框 && 表格内容居中 && 行高
.ant-table-tbody > tr > td ,.ant-table-thead > tr > th{
  border-bottom: none;
  border-right: 1px solid #ccc;
  text-align: center !important;
  padding: 10px 10px !important;
}

// 去除表头最右边边框
.ant-table-container table > thead > tr:first-child th:last-child {
  border-right: none;
}
// 去除tbody最右边边框
.ant-table-container table > tbody > tr td:last-child {
  border-right: none;
}
// 暂无数据样式
.ant-empty-description {
  color: white;
}
// 奇数行
.table-color-odd {
  background-color: rgb(9, 100, 100);
}
// 偶数行
.table-color-even {
  background-color: rgb(19, 147, 147);
}

以上是关于antd table 样式修改的主要内容,如果未能解决你的问题,请参考以下文章

antd menu 样式修改

antd Table 可伸缩列没有效果

antd vue table 设置rowClassName不生效的问题

react+antd修改antd默认样式

antd -Table

修改antd组件样式