1、使用绝对定位
.aside{
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 180px;
}
.main{
width: 100%;
margin-left: 180px;
}
2、使用浮动
.aside{
width: 100px;
background-color: red;
float: left;
height: 100%;
}
.main{
margin-left: 110px;
width: 100%;
height: 100%;
background-color: green;
}
3、利用浮动和overflow
.one {
float: left;
height: 100%;
width: 30%;
background-color: blue;
}
.two {
overflow: auto;
height: 100%;
background-color: red;
}
4、利用flex布局