前言
目前市面上很多好用的前端UI框架,大部分都是按照百分比自适应宽度的,但是在项目中还会遇到类似于右侧固定宽度,左侧自适应宽度的情况
实现
1、样式
/*样式*/
.fixed-right{
position:absolute;
right:30px;
top:0px;
bottom: 0px;
width:300px;
background: red;
}
.auto-width{
width:100%;
padding-right: 350px;
}
.content{
background: greenyellow;
height: 600px;
width:100%;
}
2、页面
<body>
<div class="content">
<div class="fixed-right">右侧固定宽度</div>
<div class="auto-width">左侧自适应宽度</div>
</div>
</body>