为什么保证金不能在Internet Explorer中使用html5&溢出:隐藏?

时间:2016-02-28 21:38:43

标签: html css

HTML:

<main>
  <p>
  this is a paragraph in main...
  </p>
</main>
<section>
  this is a section...
</section>

CSS:

p{ margin:100px; background:#99ff99; }
main{ overflow:hidden; background:#ff9999; }
section{ margin:100px; background:#9999ff; }

小提琴:https://jsfiddle.net/fhbyw80m/

当我们这样使用时,为什么保证金不能在IE中使用?

HTML:

<main>
  <p>
  this is a paragraph...
  </p>
</main>
<aside>
  this is aside...
</aside>

CSS:

main{background:#ff9999; margin-bottom:150px; }
p{background:#99ff99; margin-bottom:30px; }
aside{background:#9999ff;}

小提琴:https://jsfiddle.net/gLLt9vhy/

1 个答案:

答案 0 :(得分:1)

Internet Explorer不支持main元素。

请参阅http://caniuse.com/#search=Main上的浏览器兼容性。

另见: