@RianjulianSubmitted over 2 years ago
Give me Feedback, Feel Free !
Give me Feedback, Feel Free !
Hi Rian, You did a great job in your solution, but I noticed some improvements that can be made:
display: block;
to .cypto
.white-space: nowrap;
to the h2
headings of .time
and .price
to keep them on the same line.position: absolute;
to .attribution
to remove it from the document normal flow so it can be positioned easily with respect to the body without interfering with the card.body
using flexbox, before doing that the body should have the full height of the view port (give height: 100vh;
to the body).margin
, margin-top
, and margin-bottom
properties from the .container
div so the card would be perfectly centered.
And that's it! Happy coding!