Hey guys m, I have this page and I need it to be mobile friendly, Would someone please help me achieve that
https://codepen.io/Psypher1/pen/PLMKMj?editors=1100
Thank you
Hey guys m, I have this page and I need it to be mobile friendly, Would someone please help me achieve that
https://codepen.io/Psypher1/pen/PLMKMj?editors=1100
Thank you
Hey,
The best practise to use breakpoints/ media queries
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { … }
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { … }
// Large devices (desktops, 992px and up)
@media (min-width: 992px) { … }
// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { … }
or use framework like https://getbootstrap.com/docs/4.3/layout/overview/
Okay… what values would I then use within those blocks