Created by Grant Timmerman
When building for mobile, there are a lot of things to keep in mind...
Provide immediate answers rather than your site map
min-width
max-width
@media screen and (min-width: 600px) {
div.class {
width: 100px
}
}
@media screen and (min-width: 800px) and (max-width: 1200px) {
div.class {
width: 400px
}
}
@granttimmerman