Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,
我在网上看到绝对定位的元素没有高度。有人可以用简单的方式解释这一点,并可能用一个例子来说明它。
我觉得你有点困惑。您可能听说过仅包含绝对定位元素的元素没有高度。这更有意义。
与任何元素一样,绝对定位的元素将具有其内容的高度,除非使用heightor另有指定min-height。
height
min-height
仅包含绝对(或浮动)定位元素的元素没有高度,因为它们的内容(也称为定位元素)是从文档流中取出的。这意味着,它们不会沿着文档的渲染树渲染,其中内联元素水平堆叠,块元素垂直堆叠,而是在相对于最近定位的祖先的绝对位置上渲染。因此,它们的大小不计入父母的身高。