css-flexbox.md

added more container alignment options
This commit is contained in:
Dima 2020-03-24 16:47:45 +02:00 committed by GitHub
parent 447de944e4
commit 455decd2c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

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