我需要处理 html 和 css 这样的布局:对于 250 像素,左侧宽度是静态的,对于屏幕的其他其余部分(100%-250 像素),右侧是流动的
我尝试这样做(我正在使用 sass):
.wrapper{
width:100%;
margin: 0 auto;
.left{
width:250px;
float:left;
}
.right{
float:right;
width:100%;
margin-left: 250px;
}
}
那么我该如何解决这个问题呢?