Answers for "withstyles media query"

CSS
0

how to call media query inside css class

.myClass
{
    @media all (max-width: 1024px) {
        left: 33%;
    }
    @media all (min-width:1025px) {
        left: 25%;
    } 
}
Posted by: Guest on May-24-2021
3

media query css

media screen and (min-width: 1300px) {
media screen and (min-width: 400px) and (max-width: 700px) {
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language