Antd table: How to remove the divider line between table column heading

172 views Asked by At

As you can see in the image there is line which divides each table column heading. I wish to remove these dividing lines from this table. I'm using Antd table component. https://ant.design/components/table#examples

enter image description here

2

There are 2 answers

0
sneha On BEST ANSWER

Using css:

.ant-table-thead > tr > th {
    border-right: none !important;
  }

solved the issue.

2
Bruno coppi On

Use css:

.ant-table-thead > tr > th { position: static !important }