I don't know which size is right to be responsive,please tell me about it
Daniele
@LennyManAll comments
- @fadelunSubmitted over 3 years ago@LennyManPosted over 3 years ago
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
}
}
1 - @axseingaSubmitted over 3 years ago
Hi guys!
Just finished this one and will appreciate some feedback! If there is another way (easier!) to code images with cherry and orange instead of manipulating padding in their text please let me know. Any issues with the code, let me know.
@LennyManPosted over 3 years agoHi. great job, I really like the hover effects and the mobile menu!
0