display flex center align code example
Example 1: css flex center
display: flex;
align-items: center;
justify-content: center;
Example 2: how to align a flex container center
.table-wrapper {
display: flex;
flex-direction: column;
padding: 2rem;
margin: 0 auto;
}