maxheight media query code example
Example 1: min and max width media query
@media (max-width: 989px) and (min-width: 768px) {}
Example 2: maxheight media query
@media screen and (max-width: 995px),
screen and (max-height: 700px) {
...
}