Search code examples
reactjsantd

Ant Design: remove the divider line between table rows


When making a Table in Ant Design, there are always gray divider lines between each row. Is there a way to style these divider lines or completely remove them from the table?


Solution

  • You should override the antd table styles

    .ant-table-tbody > tr > td {
      border: none
    }