无论浏览器宽度怎么改变,都保证左边这个div宽度固定为300px,右边宽度随浏览器宽度自适应,且两个div的高度和浏览器当前高度一致
1 回答
烙印99
TA贡献1829条经验 获得超13个赞
#left {
position: fixed;
left: 0;
top: 0;
height: 100vh;
width: 300px;
/* background: blue; *//* 解开此处注释来查看效果 */
}
#right {
position: fixed;
left: 300px;
top: 0;
height: 100vh;
width: calc(100vw - 300px);
/* 如果浏览器不支持CSS3 calc方法,可以使用js计算宽度 */
/* background: red; *//* 解开此处注释来查看效果 */
}
添加回答
举报
0/150
提交
取消