如果我有一个宽度为 75% 的容器,里面有两列,左右两列,左边宽度为 10em,我如何让正确的容器占用 100% 的剩余空间?
我试过这个没有运气:
html, body {
margin:0;
padding:0;
width:100%;
height:100%;
}
#container {
position:relative;
width:75%;
margin:0 auto;
background:blue;
}
#left-container {
position:relative;
float:left;
height:100%;
width:10em;
background:red;
}
#right-container {
position:relative;
float:left;
height:100%;
width:100%;
background:yellow;
}
<div id="container">
<div id="left-container">Left</div>
<div id="right-container">Right</div>
</div>
我可以用百分比轻松做到这一点,但我需要保持固定的 10em 宽度。