Latest solutions
Latest comments
- @Adosouky@NoaSalgado
Hi!!
- The best way, in my opinion, to center .big_container would be to apply to the body a minimum height of 100vh (100% of the viewport height) and use css grid like this:
body{ min-height: 100vh; display: grid; place-content: center; }
-
The margins you apply in .big_container are not necessary. You can also apply flexbox to the body as you have done in
.container
. -
Other recommendations would be to include the styles in a separate file. You should also use a
<main>
tag instead of<div>
in the.big__container
element to indicate that the content is the main content. -
You should also include and
<h1>
heading
I hope this helps. If you have any questions let me know
Nice work!!!
Marked as helpful