From 455decd2c44878dbf9ab9dd4b9136096b4d13daf Mon Sep 17 00:00:00 2001 From: Dima Date: Tue, 24 Mar 2020 16:47:45 +0200 Subject: [PATCH] css-flexbox.md added more container alignment options --- css-flexbox.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css-flexbox.md b/css-flexbox.md index c6ba11d72..4be76ce55 100644 --- a/css-flexbox.md +++ b/css-flexbox.md @@ -56,6 +56,9 @@ weight: -3 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; ``` ```css