我有一个主 div 包含两个 div(一个用于标题,另一个用于内容)。主 div 以绝对定位放置在 html 页面的底部。当我隐藏内容 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>