Safari CSS规则vh-units?

时间:2014-04-22 07:07:54

标签: css html5 css3 safari viewport-units

有人知道Safari vh规则是否有修复?

#what{
 min-height:70vh;
}

一切正常,在所有浏览器中,但仅在Safari中无法识别? 是否有针对safari的修复,我们可以在css中使用VH规则?

2 个答案:

答案 0 :(得分:1)

而不是Vw / Vh,使用此JavaScript的rem。 "运行代码段"可能会造成混乱,导致其窗口"调整大小"通过缩放。要对此进行测试,只需将此代码复制到某个html文件中,然后在Safari和其他浏览器中运行(或参见" Full Page")。



<!DOCTYPE html>
<head>
<script language="javascript" type="text/javascript">
(function (doc, win) {
        var docEl = doc.documentElement,
            recalc = function () {
                var clientWidth = docEl.clientWidth;
                if (!clientWidth) return;

                docEl.style.fontSize = clientWidth + 'px';
                docEl.style.display = "none";
                docEl.clientWidth; // Force relayout - important to new Android devices
                docEl.style.display = "";
            };
 
        // Abort if browser does not support addEventListener
        if (!doc.addEventListener) return;

        // Test rem support
        var div = doc.createElement('div');
        div.setAttribute('style', 'font-size: 1rem');

        // Abort if browser does not recognize rem
        if (div.style.fontSize != "1rem") return;

        win.addEventListener('resize', recalc, false);
        doc.addEventListener('DOMContentLoaded', recalc, false);
    })(document, window);
</script>
<style>
    @charset "utf-8";
    *{padding: 0;margin: 0;}
    div {position:fixed;width:40%;height:30%;background-color:yellow;color:blue;font-size:0.02rem;}
</style>
</head>

<body>
    <div>in this case 0.01 rem == 1vw . You need to remove body margins.</div>
</body>

</html>
&#13;
&#13;
&#13;

有关更多信息,请参阅我找到的这篇文章。 http://css-tricks.com/theres-more-to-the-css-rem-unit-than-font-sizing

答案 1 :(得分:0)

根据您的代码,您可以使用此技巧:

在vh值前面的

使用%或em或像素,以便不支持它的浏览器获取值:

.this{
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
}