From d2cbc97ddf5d4f6ee7c82eca64817e7dba2faae8 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Sat, 13 Jun 2020 10:20:17 +1000 Subject: [PATCH] Update css-flexbox.md --- css-flexbox.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/css-flexbox.md b/css-flexbox.md index 4be76ce55..a91456384 100644 --- a/css-flexbox.md +++ b/css-flexbox.md @@ -53,12 +53,12 @@ weight: -3 ``` ```css - justify-content: flex-start; /* horizontal alignment - default */ - justify-content: flex-end; - justify-content: center; - justify-content: space-between; - justify-content: space-around; - justify-content: space-evenly; + justify-content: flex-start; /* [xxx ] */ + justify-content: center; /* [ xxx ] */ + justify-content: flex-end; /* [ xxx] */ + justify-content: space-between; /* [x x x] */ + justify-content: space-around; /* [ x x x ] */ + justify-content: space-evenly; /* [ x x x ] */ ``` ```css