如何在媒体查询中使用逻辑表达式?
How to use logical expressions in media queries?
我想创建一个规则,如果设备双倍宽度大于设备高度 height < width * 2,将触发样式。是否可以在媒体查询中写出这样的逻辑方程式?
@media only screen and (height < width * 2) {}
您尝试过使用 @media screen and (min-aspect-ratio: 2/1)
吗?
我想创建一个规则,如果设备双倍宽度大于设备高度 height < width * 2,将触发样式。是否可以在媒体查询中写出这样的逻辑方程式?
@media only screen and (height < width * 2) {}
您尝试过使用 @media screen and (min-aspect-ratio: 2/1)
吗?