haru-kunyo
@haru-kunyoAll solutions
- Submitted 16 days ago
Blog Preview Card using flex
- HTML
- CSS
I would like to know if my css code can be any better.
- Submitted 17 days ago
QR-code-compnent using CSS flex property
- HTML
- CSS
code 1:
body{ display: flex; flex-direction: column; justify-content: center; }
code 2:
body{ display: flex; flex-direction: column; align-content: center; }
code 3:
body{ display: flex; flex-direction: column; align-items: center; }
I want to know why code 1 and code 2 were not able to center the body while code 3 does it.