D
D
DeniSidorenko2019-05-14 14:28:28
css
DeniSidorenko, 2019-05-14 14:28:28

How to make a media query by height?

Good afternoon, please tell me if it is possible to set media queries by height. For example, we can set ,
@media only screen and (max-width : 1600px){}
Ie if the screen is less than 1600 then these styles
Is it possible to somehow set if the height is less than 720 then these styles
If yes how the height is calculated. Ie the height of the browser (together with bookmarks, search, etc.) or without them?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anton Usachov, 2019-10-15
@rockfeeler

<code lang="css">
@media only screen and (max-height : 768px){}
</code>

The height of the browser window is considered.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question