Merge pull request #1391 from tomatikrad/patch-1

This commit is contained in:
Rico Sta. Cruz 2020-06-13 10:20:28 +10:00 committed by GitHub
commit 69b75e6d26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -53,9 +53,12 @@ weight: -3
```
```css
justify-content: flex-start; /* horizontal alignment - default */
justify-content: flex-end;
justify-content: center;
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