我玩浮動物,我注意到「浮動崩潰錯誤」不會出現在固定位置。這裏是example。爲什麼浮動崩潰不會出現在固定位置
所以,我有兩個div:
<body
<div class="static">
<img>
<p>text text text</p>
</div>
<div class="fixed">
<img>
<p>text text text</p>
</div>
</body>
先用靜態的位置和第二固定:
.fixed, .static{
outline: 1px solid black;
width: 150px;
}
.fixed{
position: fixed;
left: 200px;
top: 200px;
}
img{
float: right;
background-color: green;
width: 100px;
height: 100px;
}
而且結果:
那麼,爲什麼第二固定-div不需要像這樣的東西0修復浮動崩潰?
如果我想要固定div與fl出現怎麼辦燕麥崩潰,錯誤? – mqklin