Answers for "how to change class width media query css"

CSS
2

how to set media query for both width and height in css

@media (min-height: 768px) and (max-height: 768px) and (min-width: 1366px) and (max-width: 1366px) { ... }
Posted by: Guest on July-11-2021
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

Browse Popular Code Answers by Language