如何使用高度:-webkit-fill-在Edge浏览器中可用?如何使div填充Edge中的可用空间?

时间:2019-01-14 03:20:36

标签: html css microsoft-edge

我正在使用引导程序来预览移动设备,如下所示:
enter image description here

它在Chrome中运行良好。但不在边缘:(

我的HTML / CSS代码如下:

.frame {
  border-radius: 15px;
  background-color: #b3b6b9;
  height: 400px;
  padding: 50px 10px 75px 10px;
}

.screen {
  border-radius: 10px;
  background-color: #ffffff;
  height: -webkit-fill-available;
  padding: 20px 15px 150px 15px;
  
}
.circle {
  border: 1px solid;
  border-color: #ffffff;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  margin: 10px auto;
  position: relative;
}
.preview {
  -webkit-border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 15px;
  -webkit-border-bottom-right-radius: 25px;
  -webkit-border-bottom-left-radius: 0px;

  -moz-border-radius-topleft: 15px;
  -moz-border-radius-topright: 15px;
  -moz-border-radius-bottomright: 25px;
  -moz-border-radius-bottomleft: 0px;

  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 0px;
  background-color: #dee0e2;
  height: -webkit-fill-available;
}
<div class="col-4">
      <div class="row">
        <div class="col-12">
          <p>Preview</p>
          <div class="frame">
            <div class="screen">
              <div class="preview"></div>
            </div>
            <div class="circle">
              &nbsp;
            </div>
          </div>
        </div>
      </div>
    </div>

但是布局在Edge中无法正常工作。我想这与CSS语句的高度有关:-webkit-fill-available;

以下显示了Edge中移动设备的布局,以供您参考。 enter image description here

请注意,预览div也未显示在Edge中:

3 个答案:

答案 0 :(得分:1)

我认为您可以简单地声明两次高度:

height: 100%;
height: -moz-available;          /* WebKit-based browsers will ignore this. */
height: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
height: fill-available;

答案 1 :(得分:1)

需要为height:100%容器设置.screenenter image description here

sample code

答案 2 :(得分:0)

使用min-height用于IE来填充可用空间

 min-height: 100%; in IE