Remove table borders?

2022-07-14T19:17:20.16+00:00

Is there really no way to remove table borders in a modern SharePoint page? That just can't be true . . .

. . . can it?

Azure Table Storage
Azure Table Storage
An Azure service that stores structured NoSQL data in the cloud.
164 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Dillon Silzer 56,841 Reputation points
    2022-07-14T19:58:05.483+00:00

    There is no out-of-box solution for doing so as mentioned by (Sukie Qi MSFT) on https://answers.microsoft.com/en-us/msoffice/forum/all/remove-table-borders-from-table-in-sharepoint/16c76e84-5c71-4b89-afbe-d8acf64cea26

    However, you can customize the theme in your SharePoint Site:

    element {  
      /* ... */  
      border-color: "[theme: themePrimary, default: transparent;]";  
      /* ... */  
    }  
    

    https://learn.microsoft.com/en-us/sharepoint/dev/spfx/use-theme-colors-in-your-customizations

    1 person found this answer helpful.

  2. Billy 20 Reputation points
    2024-07-30T06:21:35.0433333+00:00

    I understand it has been some time, but the options for modifying tables in SP have not significantly changed.

    However, there is a straightforward way to enhance tables by adding colors or removing borders. Here is a screenshot of tables pasted from Excel into a SP page:

    Steps:

    1. Create a table in Excel.
    2. Format it as a table and add colors.
    3. Select the unwanted borders and remove them.

    I hope this helps a bit!User's image

    0 comments No comments