Responsive Media Queries

PHOTO EMBED

Tue Sep 12 2023 19:35:13 GMT+0000 (Coordinated Universal Time)

Saved by @kaode20 #html #css #responsive

/*__Responsive Media Queries __*/

/* Mobile & Small devices */
@media only screen and (max-width: 480px) {...}

/* Portrait Tablets and Ipads devices) */
@media only screen and (max-width: 768px) {...}

/* Laptops and Small screens  */
@media only screen and (max-width: 1024px) {...}

/* Laptops, Desktops Large devices */
@media only screen and (max-width: 1280px) {...}

/* Extra large devices (large laptops and desktops) */
@media only screen and (min-width: 1281px) {...}
content_copyCOPY