CSS Breakpoints

PHOTO EMBED

Tue Oct 17 2023 08:18:05 GMT+0000 (Coordinated Universal Time)

Saved by @passoul #css #breakpoints

/* Mobile */
@media (max-width: 480px) { // styles
}
/* Extra small devices */
@media (min-width: 481px) and (max-width: 767px) { // styles
}
/* Small tablets */
@media (min-width: 768px) and (max-width: 991px) { // styles
}
/* Large tablets/laptops */
@media (min-width: 992px) and (max-width: 1199px) { // styles
}
/* Desktops */
@media (min-width: 1200px) and (max-width: 1919px) { // styles
}
/* Extra large screens */
@media (min-width: 1920px) {
// styles
}
content_copyCOPY

Essential CSS Breakpoints for Web Developers: