DIV 必须始终定义显示和位置或不定义默认值

DIV must always define display and position or not or what is default

经过大量搜索后,我找不到我要找的答案。我是 TABLE 用户,目前正在将我的旧站点编辑为新技术,但我有一个问题:

    <div style="background:#6666; 
here: we go; 
display:block; position:relative;> test </div>

我是否必须始终为所有 div 设置显示和位置属性?

如果我不设置默认属性,那么它们的显示和位置默认属性是什么?

是的,这是一个很好的问题,许多人告诉您如何使用这些属性,但没有人告诉您是否必须...

任何 div 人

不,它们不是必需的。如果您不指定它们,div 标签将具有以下 CSS 属性的默认值:

display: block
position: static

http://www.w3.org/TR/CSS2/sample.html

https://developer.mozilla.org/en-US/docs/Web/CSS/position