absolute
Do not leave space for the element. Instead, position it at a specified position relative to its closest positioned ancestor or to the containing block. Absolutely positioned boxes can have margins, they do not collapse with any other margins.
我觉得对于疑惑一的解答应该是:
由于
second
你使用fiexed
定位,并占满整个窗口,所以即使溢出部分你也看不到。只有加上overflow:auto|scroll
之后,如果有溢出才会出现滚动条。疑问一:
overflow:scroll
只在块元素指定了固定的高宽才会出现滚动条,见demo:demosecond
并没有固定高宽,其大小是靠子元素撑开,所以overflow:scroll
对其没有影响。疑问二:
third
是相对于second
定位,而不是当前浏览器窗口。绝对定位的相对元素是最近一个已经定位的父元素,如果没有,则相对于body
。position