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.
156 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Dillon Silzer 54,646 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.