.left{
width:200px;
height:600px;
background:red;
position:fixed;
top:0;
left:0;
}
.content{
position:fixed;
background:yellow;
left:200px;
right:0;
top:0;
bottom:0;
}
固定定位 -- 左侧固定,右侧自适应布局
最新推荐文章于 2022-11-05 17:16:19 发布
.left{
width:200px;
height:600px;
background:red;
position:fixed;
top:0;
left:0;
}
.content{
position:fixed;
background:yellow;
left:200px;
right:0;
top:0;
bottom:0;
}