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:
xxxxxxxxxx
1
<Table className='text-center'>
Practical example:
xxxxxxxxxx
1
const MyComponent = () => {
2
return (
3
<Table striped bordered hover className='text-center'>
4
<thead>
5
// ...
6
</thead>
7
<tbody>
8
// ...
9
</tbody>
10
</Table>
11
);
12
};
0 commentsShow commentsAdd comment