Latest solutions
Latest comments
- @fadelun@LennyMan
Hi, about sizes I used to style the page in a mobile-first approach. So a do my style first for the mobile layout and then with media queries I scale up to tablets and desktops.
The size that I used are:
<768px for MOBILE ;
min-width: 768px to 1023px for TABLET;
min-width: 1024px for DESKTOP;
My css looks like this:
.myClass {
//mobile style
}
@media (min-width: 768px) {
.myClass {
//tablet style
}
@media (min-width: 1024px) {
.myClass {
//desktop style
}
}
- P@axseinga@LennyMan
Hi. great job, I really like the hover effects and the mobile menu!