如何将媒体查询应用于高度和宽度?

How can I apply a Media Query to both Height and Width?

如何对设备的高度和宽度应用媒体查询 我目前正在使用这个:

@media (min-width: 1366px) and (max-width: 1366px){

但我还需要将其应用于 768px 的高度...

我只想在设备分辨率为 1366x768px 时应用它!

@media (min-height: 768px) and (max-height: 768px) and (min-width: 1366px) and (max-width: 1366px) { ... }

这里是可能重复的问题:

Media Queries: check min-height and min-width?

以下是问题的一些参考:

First reference
Second reference