我有一個主div包含兩個div(一個用於標題和其他內容)。主div被放置在html頁面的底部並且具有絕對定位。當我隱藏內容div時,它會佔據頁面底部的空間。設置顯示:無div div內仍佔用空間
我需要只顯示標題DIV做一個jquery切換..
<div class="tll">
<div class="tllH">
</div>
<div class="tllC">
</div>
</div>
<style>
.tll{
background: yellow;
height: 100px;
width: 100%;
position: absolute;
left: 0;
bottom: 0;
}
.tllH{
background: green;
height: 20px;
width: 100%;
}
.tllC{
background: magenta;
height: 80px;
width: 100%;
display: none;
}
</style>
謝謝,剛剛使用這個答案來修復我自己的打印樣式表。 'div.content {width:auto; }'是我所需要的。 – Ryan