你好,我有一個問題,我的造型有兩個div女巫高度是自動的,但事情是當第一個div(.filter)高度改變第二個div(.posts)下降不亞於高度改變(.filter高度+50,.POST下來+ 50像素): stick div的位置,因爲它是
我的CSS:
.fp {
position: relative;
width: 1050px;
height: auto;
background-color: red;
left: 170px;
}
.filter {
background-color: white;
position: relative;
width: 250px;
min-height: 300px;
height: auto;
top: 20px;
border-radius: 4px;
border: 1px solid #1a171a;
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.6);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.6);
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.6);
}
.posts {
background-color: white;
position: relative;
width: 750px;
height: auto;
float: right;
margin-top: -280px;
border-radius: 4px;
border: 1px solid #1a171a;
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.6);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.6);
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.6);
}
HTML:
<div class="fp">
<div class="filter">
</div>
<div class="posts">
</div>
</div>
自動溢出讓我向下滾動並向左滾動如何擺脫它們? – yahoo5000
是有點工作,但我得到.filter股利減少了布魯姆沒有陰影,沒有結束後,我使用隱藏 – yahoo5000
我只是添加顯示內嵌塊,它現在看起來很好 – yahoo5000