Latest solutions
Latest comments
- @samd1a@Derrick-ndemo
If you are talking about the quote image, try using background positioning. You can check out my solution if that's ok
- @Ghaffar7@Derrick-ndemo
Hello there, I as a newbie will try to explain media queries to the best of my understanding.
Media query is a CSS technique introduced in CSS3.
It uses the @media rule to include a block of CSS properties only if a particular condition is true.
Example If the browser window is 600px or smaller, the background color will be light blue:
@media (max-width: 600px) { body { background-color: lightblue; } } As for this specific project, you can check out my page or codepen (https://codepen.io/derrick-ndemo) on how I did it
Marked as helpful - @jadrianc@Derrick-ndemo
Hello there Adrian. I as a Newbie used CSS flexbox to position the middle container. for the text, I personally used the text-align property (center)
Marked as helpful