body元素是块级还是内联元素

body元素是块级还是内联元素

本文介绍了body元素是块级还是内联元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在MDN上查看HTML body元素是块级还是内联级元素:

/



这些提及除了元素之外的任何内容:


解决方案

W3将其定义为一个块。



它默认显示为一个块。


I've looked on the MDN for any indication whether the HTML body element is a block-level or inline-level element:

Inline Elements /Block-level Elements

Neither of these mentions anything about the body element except:

解决方案

W3 defined it as a block.http://www.w3.org/TR/html401/struct/global.html#edef-BODY

It is displayed as a block by default.http://www.w3.org/TR/html-markup/body.html

这篇关于body元素是块级还是内联元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 10:17