Answers for "media screen for all devices"

0

@media for all devices

@media (min-width: 640px) { }
@media (min-width: 768px) { }
@media (min-width: 1024px) { }
@media (min-width: 1280px) { }
@media (min-width: 1536px) { }
Posted by: Guest on September-01-2021
1

media query css for all devices

@media (min-width: 600px) and (max-width: 800px) {

/* your css code here  */

/* html { background: red; } */


}
Posted by: Guest on November-03-2020

Code answers related to "media screen for all devices"

Browse Popular Code Answers by Language