@red-jpoSubmitted over 1 year ago
The only problem I couldn't solve was in the display between 501-610px, the image doesn't fill the space, if anyone could give me a hand I would appreciate
The only problem I couldn't solve was in the display between 501-610px, the image doesn't fill the space, if anyone could give me a hand I would appreciate
Hello congratulations on this project
Why you couldn't solve the display between 501-610px its only because the only media query you did was for media screen below 500px. Try to do media query for screen below 768px or 610px and see.
@media screen and (max-width:610px;){ ....} OR @media screen and (min-width:500px){ ..... }
Hope this is helpful.