Answers for "media query width height"

CSS
1

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

media query for max width and height

@media only screen and (max-width: 535px), screen and (max-height:550px ) {
}
Posted by: Guest on November-05-2021

Browse Popular Code Answers by Language