diff --git a/content/css/concepts/flexbox/terms/justify-content/justify-content.md b/content/css/concepts/flexbox/terms/justify-content/justify-content.md new file mode 100644 index 00000000000..88303bfc35d --- /dev/null +++ b/content/css/concepts/flexbox/terms/justify-content/justify-content.md @@ -0,0 +1,10 @@ +# justify-content + +The `justify-content` property is used in CSS Flexbox to control how flex items are aligned and distributed along the main axis of a flex container when extra space is available. + +--- + +## Syntax + +```css +justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;