css - IE11 无法识别@media 查询中的视口(viewport)单位

标签 css media-queries internet-explorer-11

在 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;
    }
}

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

@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 及更高版本。

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

关于css - IE11 无法识别@media 查询中的视口(viewport)单位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38377320/

相关文章:

css - Microsoft Shadow Filter - 没有方向?

CSS/RWD - 列中的图像未正确加载

html - 在浏览器中工作的媒体查询调整大小而不是在移动设备中

css - 支持网站上的最小宽度

javascript - 在 Internet Explorer 11 的 iframe 中发布发布表单

css - IE11 的 Flexbox 最大高度问题

javascript - JQuery 在 Internet Explorer 11 下无法使用计算机名称

css - 创建具有特定结构的列表项

html - 如何在 CSS 中模拟这种设计? (网格状)

CSS 边框的多重渐变发光