Hi! I'm a newbie trying to learn. If you could take a look and give me tips to improve, I'd immensely appreciate it. I describe my struggles with flex-box positioning on README.md.
Adam Elitzur
@AdamElitzurAll comments
- @danilobmlSubmitted almost 3 years ago@AdamElitzurPosted almost 3 years ago
Hi Danilo, one thing that can help with the bg is setting background-repeat to no-repeat and background-size to 100%. I also set background-position to top left, and that really helped me with my bg. I'm also having similar responsive issues because I used margin, let me know if you find a solution! Thanks!
Marked as helpful2 - @audinastggSubmitted almost 3 years ago
I'm still confused how to put a space between 0.041ETH and 3 days left
@AdamElitzurPosted almost 3 years agoHi Audina, the way that I was able to put the space between the price and time was with flexbox. I put both of them (price and time and their images) in a div with a class of details, and gave it a display of flex, then I used justify-content: space-between on that div. If you know about flexbox, you can use that and it worked for me.
My CSS looked like this: .details { display: flex; justify-content: space-between; }
Also, to get rid of the accessibility issues, you can wrap everything in the body in a tag like this:
<main class="container"> </main>Hope that's helpful! Let me know if you have more questions!
Marked as helpful0