<main> 元素在 Internet Explorer 11 中不起作用

Posted

技术标签:

【中文标题】<main> 元素在 Internet Explorer 11 中不起作用【英文标题】:<main> element not working in Internet Explorer 11 【发布时间】:2016-06-19 15:03:16 【问题描述】:

我正在尝试使用 CSS 设置 &lt;main&gt; 元素的宽度。只是使用

main 
  width:200px;

在除 Internet Explorer 之外的所有浏览器中都可以正常工作(Edge 可以)。

看看这个例子:JSfiddle

IE11 中的结果:

Chrome 中的结果:

【问题讨论】:

【参考方案1】:

Internet Explorer (see browser support data) 不支持 html5 main 元素。

您需要将main 定义为块级元素,width 才能工作。

进行此调整:

main 
  display: block;  /* new */
  width: 200px;

因为main 元素无法被 Internet Explorer 识别——这意味着它没有在 IE 的默认样式表中定义——它使用 CSS 初始值 (per the spec)。

display 属性的初始值为inline

width 属性被内联元素忽略。来自规范:

10.3.1 Inline, non-replaced elements

width 属性不适用。

通过将main 元素定义为作者样式中的块级元素,width 属性将起作用。

更多细节:

Default settings of unrecognized HTML elements Default style sheet for HTML 4 main property browser compatibility display property definition and initial value

【讨论】:

谢谢,这行得通!奇怪的是 IE11 不支持这个简单的 HTML5 标签。 @JensRenders IE 需要数年时间才能支持所有其他浏览器都支持的新元素、CSS 属性和 API,所以,不,这并不奇怪,在 Edge 中也不会有太大不同。 主要标签是 display: 在 Edge 中默认为 block :)

以上是关于<main> 元素在 Internet Explorer 11 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

粘连布局

对“粘连”footer布局的思考和总结

对“粘连”footer布局的思考和总结

对“粘连”footer布局的思考和总结

如何在 C# 中解析多个元素属性值

在此上下文中,元素img不允许作为元素图片的子元素