flex center element code example
Example 1: css flex center
display: flex;
align-items: center;
justify-content: center;
Example 2: flexbox align right and left
.primary-nav {
display:-webkit-flex;
display:flex;
list-style-type:none;
padding:0;
justify-content:flex-end;
}
.left {
margin-right:auto;
}
Example 3: how center content in css by using flex
display: flex;
width: 60%;
justify-content: center;
margin: 0 auto;
Example 4: flexbox middle item centered
.Aligner {
display: flex;
align-items: center;
justify-content: center;
}
.Aligner-item {
max-width: 50%;
}
.Aligner-item--top {
align-self: flex-start;
}
.Aligner-item--bottom {
align-self: flex-end;
}
Example 5: how to horizontally center header at the top of page with flexbox css
.box.flex {
display: flex;
justify-content: center;
}
Example 6: center flex
.flex-container {
display: flex;
height: 300px;
justify-content:
center;
align-items: center;
}