Resolution with media screen
I´m using the following in css:
@media screen and (max-width: 400px){
.details-container {width: 121%;}
}
@media screen and (max-width: 640px){
.details-container {width: 201%;}
}
If i try a resolution under 400px, it takes the 640px css as reference, why?
No comments:
Post a Comment