IE11 无法识别@media 查询中的视口单位

IE11 unable to recognise viewport units in @media queries

在 css 中执行缩放代码(因为它不依赖于 javascript 的存在),因此宽度/高度比在所有尺寸下都保持相同。对于所有当前支持的浏览器,它都可以工作,但 IE11 似乎完全忽略了媒体查询 - 有没有人找到让它工作的方法?

使用 scss 以便于编码 -

$width: 512;
$height: 350;

@mixin aspect-ratio() {
    $widthRatio: $width / $height;
    $heightRatio: $height / $width;

    $widthHeight: #{$widthRatio * 100}vh;
    $heightWidth: #{$heightRatio * 100}vw;

    /* Fix the width relative to the height */
    @media all and (min-width: $widthHeight) {
        max-width: $widthHeight;
    }

    /* Fix the height relative to the width */
    @media all and (min-height: $heightWidth) {
        max-height: $heightWidth;
    }
}

body {
    @include aspect-ratio();
}

哪个输出-

@media all and (min-width: 146.28571vh) {
    body {
        max-width: 146.28571vh;
    }
}
@media all and (min-height: 68.35938vw) {
    body {
        max-height: 68.35938vw;
    }
}

编辑:正如在下面的评论中指出的那样,我不需要为此进行媒体查询,但是我还有另外两件事似乎确实需要它——字体缩放需要基于高度,除非这会留空space 当它需要变得基于宽度时在正文下方,并且有 "fake" 个页脚得到 position:fixed 和一个 top 添加到它们以保持它们在正确的位置。 ..

@mixin footer-aspect-ratio() {
    $footerHeightRatio: $height / $width;

    $footerHeightWidth: #{$footerHeightRatio * 100}vw;

    $footerHeightPx: #{$height}px;

    top: calc(100vh - 3rem);

    $footerTopMin: calc(#{$footerHeightWidth} - 3rem);

    /* Fix the height relative to the width */
    @media all and (min-height: $footerHeightWidth) {
        top: $footerTopMin;
    }

    /* Make sure the font can never get too short */
    @media all and (max-height: #{$height}px), all and (max-width: #{$width}px) {
        bottom: 0;
    }
}

@mixin font-scaling($font-vh: 4.5) {
    $widthRatio: $width / $height;
    $heightRatio: $height / $width;

    $widthHeight: #{$widthRatio * 100}vh;
    $heightWidth: #{$heightRatio * 100}vw;

    $fontsizeWidthHeight: #{$font-vh}vh;
    $fontsizeHeightWidth: calc(#{$heightRatio} * #{$font-vh}vw);
    $fontsizeMin: #{$font-vh * $height / 100}px;

    /* Fix the width relative to the height */
    font-size: $fontsizeWidthHeight;

    /* Fix the height relative to the width */
    @media all and (min-height: $heightWidth) {
        font-size: $fontsizeHeightWidth;
    }

    /* Make sure the font can never get too short */
    @media all and (max-height: #{$height}px), all and (max-width: #{$width}px) {
        font-size: $fontsizeMin;
    }
}

一种解决方案是不使用最小宽度和最小高度,而是使用最小纵横比和最大纵横比。参见 MDN

html {background:white; height:100%}
body {background:yellow; height:calc(100% - 16px)}

@media all and (min-aspect-ratio: 512/350) {
    body {
        max-width: 146.28571vh;
    }
}
@media all and (max-aspect-ratio: 512/350) {
    body {
        max-height: 68.35938vw;
    }
}
  This is a test. Again.

适用于 IE9 及更高版本。

我不确定你问题中的混入应该如何工作,但我希望这个例子能让你入门。