嗯..我的英文不好,所以我画我想要的..
绿色容器是我的内容包装。黑色和红色方块是访问其他页面的一些按钮。
因此,当我调整页面大小时,我想保留这些按钮的另一个图像:
1024px 窗口视图:http ://d-3.me/1024.jpg
这是我最初的 HTML:
<div id="wrap_home_bts">
<div class="bt_woman"></div>
<div class="bt_man"></div>
</div>
这是我的CSS:
#wrap_home_bts{
position:relative;
width:100%;
height:100%;
}
.bt_woman{
width:880px;
height:389px;
background:#FFCC00;
position:absolute;
left:0;
bottom:245px;
}
.bt_man{
width:733px;
height:168px;
background:#CC00FF;
position:absolute;
right:0;
bottom:74px;
}
但是这样,“按钮”伴随着调整大小的窗口。
我清楚吗?