align item flexbox code example
Example 1: how to align a flex container center
.table-wrapper {
display: flex;
flex-direction: column;
padding: 2rem;
margin: 0 auto;
}
Example 2: flex align top css
align-items: flex-start | flex-end | center | baseline | stretch
.container {
display: flex;
align-items: flex-start;
}
Example 3: flex box align items
.container {
justify-items: center;
}