Reputation: 481
I'm working on a table in react and struggling to centre it to the page, so that it sits under the drop-down select and Title
Here is my codesandbox
Upvotes: 0
Views: 5072
Reputation: 882
Just add margin: auto;
to your StyledTable, like so:
const StyledTable = styled.table`
border-collapse: collapse;
margin: auto;
`;
Upvotes: 1