2

我试图找到媒体查询(nexus 6 的纵横比媒体查询)。但没有找到任何地方。如果有人可以在这件事上帮助我,请告诉我。

我还尝试使用此链接( http://andrew.hedges.name/experiments/aspect_ratio/ )根据宽度/高度创建比率,但它对我不起作用。

提前致谢。

4

2 回答 2

0

有人在https://codereview.stackexchange.com/questions/74915/reducing-media-queries提出半相关问题似乎使用了这个:

/* Motorola Nexus 6 (portrait and landscape) */
@media only screen and (min-device-width : 1440px) and
(max-device-width : 2560px) and (-webkit-min-device-pixel-ratio : 3.5) {
html {
    font-size: 200%;
    }
}
于 2015-11-11T08:55:31.153 回答
0

既然你想要纵横比,你只需像这样写它的尺寸: @media screen and (device-aspect-ratio: 435/773) { }

于 2016-07-08T19:10:54.907 回答