There are several ways to combine fixed / liquid layouts, depending on your specific case.
Insulate the side panel.
- .
.side {
@include span(3 static isolate);
}
.main {
@include full;
padding-left: span(3 static wide);
}
.main {
margin-left: span(3 static wide);
}
span(3 static) 3 , / column-width. isolate , . wide, . , 200px. .
.
, . Susy 2, :
.side {
position: absolute;
left: 0;
top: 0;
width: span(3 static);
}
.main {
padding-left: span(3 static wide);
}
- hack.
, . overflow: hidden;
.side {
@include span(3 static);
}
.main {
overflow: hidden;
}
, - . , hackey downsides, :
.main {
display: table-cell;
vertical-align: top;
width: 10000px;
}