Design comparison
Solution retrospective
This is my first challenge! Hope I did good.
Community feedback
- @EmmanuelHexerPosted over 2 years ago
Congratulations on completing this challenge.
I have some tips for improving your code. I checked your code and
-
Your linked stylesheet is missing something in the head.
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen"
It is missing>
sign. -
Also add a height of 100vh to your
.content
section to center your container.
i hope this helps.
Marked as helpful0 -
- @ERodriguez-10Posted over 2 years ago
Hi @bregadero!
Welcome to the community! As @Phalcin said is missing ">" sign (but you already know that).
Also, I think it'll be better if you make this changes:
.content { display: flex; align-items: center; text-align: center; height: 100vh; justify-content: center; }
Comments: margin-top is not necessary because there are better options for center content.
With "align-items" you center the content across x-axis. And with "justify-content" you center across y-axis. (Note that "flex-direction: column" has no effect, so you should delete this).
You can check more information about this two properties with flexbox, take a look a cheatsheet about this is really helpful.
Have a nice week!
See u soon!
1@mayspiekPosted over 2 years agoHi @ERodriguez-10! Thank you for the feedback! I'll apply the changes you recommended and research a little bit more. When I was centering the content my exact thought was "I think that's not the best way to do it" hahaha but I did anyway bc I was just "playing" a little bit. On the next challenge, I'm gonna focus more on that matter. Thank you a lot!
0 - @jeancarlosruizPosted over 2 years ago
Great job completing your first challenge! Welcome to the community.
1 - @mayspiekPosted over 2 years ago
Thanks for the feedback! I didn't notice that it was missing the closing tag, haha. I also added the height you recommended, but it just "elongated" the container downwards. The thing is, in my monitor, this div looked centered, but the comparison here doesn't look so good.
1
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord