@pandeynkSubmitted over 1 year ago
IlyasSoe
@IlyasSoeAll comments
- @IlyasSoePosted over 1 year ago
Hello! nice work!
Replace
height: 800px;
in.app-container
withmin-height: 100vh;
and Delete
width: 1440px;
0 - @JustDiggsSubmitted over 1 year ago
How do I make it so that this website looks good on both mobile and pc?
Should I be using px as a measurement?
How can I make my html and/or css less "messy"
@IlyasSoePosted over 1 year agoHello ! nice work !
use in
body
the flexbox property or grid to center will align the card in the center (in both axis) instead of the margins in.container
.e.g :
body { min-height: 100vh; } .container { display : flex; align-items: center; justify-content: center; }
for more details : Click me
Marked as helpful1 - @CBZ86Submitted over 1 year ago@IlyasSoePosted over 1 year ago
Hello, nice work !
Use
background-repeat: no-repeat;
in your css for background-image property.Marked as helpful0