@mrtrell42Submitted about 3 years ago
Good evening tribe! can someone please tell me how can I make this responsive for mobile/small screens. I know I need to use @media () but I am not sure exactly what to do.
Good evening tribe! can someone please tell me how can I make this responsive for mobile/small screens. I know I need to use @media () but I am not sure exactly what to do.
You can use this below code for mobile:
@media only screen and (min-width: 320px) { body { } }
But, I recommend you to design the mobile version first, then do the desktop design because when you design your mobile version, the "min-width" of screen is 0px. So that means, you just only use @media.. for desktop version. I hope this can help you, thanks.