EN
React-Bootstrap - center items in Table component
1
answers
0
points
How can I center items in Table component in React-Bootstrap?
I've tried adding className="justify-content-center" and className="align-items-center".
1 answer
0
points
Just add text-center class to your Table component:
<Table className='text-center'>
Practical example:
const MyComponent = () => {
return (
<Table striped bordered hover className='text-center'>
<thead>
// ...
</thead>
<tbody>
// ...
</tbody>
</Table>
);
};
0 comments
Add comment