Latest solutions
Latest comments
- @dknyd@LorenaFrias
Hey Daniel!
I'm still working on this challenge but I'd like to help anyway.
-
You could begin mobile-first design: title section then ratings and finally testimonials. That way you've got the right order for mobile devices.
-
About your second question: in your media query
.rate# { display: flex; flex-direction: column; }
This should place the stars above the text.
Hope this helps! 😊
Marked as helpful -
- @mbedon@LorenaFrias
Hi @mbedon! Your solution looks great! Your approach was quite accurate to me. Mind you, I'm still learning, but you could try using a css reset:
img { display: block; max-width: 100% }
Since images are inline elements display: block should get rid of that unexpected gap and max-width:100% prevents large images from overflowing their container. Hope that was helpful!Marked as helpful