Media Queries Generator
Approach
Breakpoint Preset
Breakpoints
Additional Queries
Generated CSS
/* Mobile First Approach */
/* Base styles (mobile) */
.container {
/* Your mobile styles here */
}
/* Mobile and up */
@media (min-width: 320px) {
.container {
/* Your mobile styles here */
}
}
/* Tablet and up */
@media (min-width: 768px) {
.container {
/* Your tablet styles here */
}
}
/* Desktop and up */
@media (min-width: 1024px) {
.container {
/* Your desktop styles here */
}
}
/* Wide and up */
@media (min-width: 1440px) {
.container {
/* Your wide styles here */
}
}
Breakpoint Summary
mobile
min-width: 320px
tablet
min-width: 768px
desktop
min-width: 1024px
wide
min-width: 1440px