Update css-flexbox.md

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

View File

@ -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