Justify Content Property


The "justify-content" property in CSS is used to align flex items along the main axis of a flex container. It is primarily used in conjunction with the "display: flex" or "display: inline-flex" properties applied to a parent container.

{ justify-content : center;}


{ justify-content : flex-start;}


{ justify-content : flex-end;}


{ justify-content : space-around;}


{ justify-content : space-between;}


{ justify-content : space-evenly;}