简单的CSS网格无法在IE11上工作 [英] simple css grid not working on IE11

查看:108
本文介绍了简单的CSS网格无法在IE11上工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用CSS网格,并且尝试制作一个简单的示例,但是尽管我使用了适当的语法,但它似乎无法在IE11上运行:

I'm experimenting with css grid and i'm trying to make a simple example, but it does not seem to work on IE11 although i use the appropriate syntax:

.grid {
  background: gold;
  height: 90vh;
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  -ms-grid-columns: 405px 1fr;
  grid-template-columns: 405px 1fr;
  grid-template-rows: 1fr;
  -ms-grid-rows: 1fr;
}

section {
  background: red;
}

<div class="grid">
  <section>
    section1
  </section>
  <section>
    section2
  </section>
</div>

推荐答案

显然,您需要显式设置网格中每个元素的位置,因此对于问题中的示例,您需要执行以下操作:

Apparently you need to explicitly set the location of each element of the grid, so for the example in the question, you'll need to do this:

<div class="grid">
  <section class="s1">
    section1    
  </section>
  <section class="s2">
    section2
  </section>
</div>

.s1 {
  padding: 20px;
  background: red;
  -ms-grid-row: 1;
  -ms-grid-column: 1;

}

.s2 {
  padding: 20px;
  background: green;
  -ms-grid-row: 1;
  -ms-grid-column: 2;

}

手动执行操作可能很繁琐,但是如果您使用网格模板区域,自动前缀会自动为您呈现。

Doing it manually can be very tedious, but if you use grid-template-areas, autoprefixer will automatically render it for you.

所以最后一个示例如下:

So the final example looks like this:

.grid {
  grid-template-areas: "s1 s2";
  background: gold;
  height: 500px;
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  -ms-grid-columns: 405px 1fr;
  grid-template-columns: 405px 1fr;
  grid-template-rows: 1fr;
  -ms-grid-rows: 1fr;
}

.grid .grid{
    height: 300px;
}

.s1 {
  padding: 20px;
  background: red;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: s1;
}

.s1 .s1 {
  background: teal;
}

.s2 {
  padding: 20px;
  background: green;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: s2;
}

.s2 .s2 {
  background: yellow;
}

section section {
  background: green;
}

<div class="grid">
  <section class="s1">
    section1    
  </section>
  <section class="s2">
    <div class="grid">
      <section class="s1">
    nested-section1    
  </section>
  <section class="s2">
    nested-section2
  </section>
    </div>
  </section>
</div>

这篇关于简单的CSS网格无法在IE11上工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆