我需要1 div来保持窗口大小不变

时间:2018-11-01 15:10:18

标签: html css resize width

HTML:

 <div id="aside">
 <div id="center">

CSS:

html,body{
    height:100%;
}
#aside{
    height:100%;
    position:absolute;
    width:380px;
    background-color:blue;
}
#center{
    left:380px;
    height:100%;
    position:absolute;
    width:800px;
    background-color:#2c2c37;
}

我似乎无法让#center缩小,直到其宽度变为0,然后#aside开始缩小。 尝试从另一个网站重现该效果。 我基本上希望#aside在缩小页面大小的同时保持其宽度。使用这些设置,#aside和#center都会缩小。谢谢!

0 个答案:

没有答案