当我调整页面大小时,我的正文内容将转到固定菜单区域。
我使用像素和百分比,我该如何防止这种情况?
<div class="menu">menu</div>
<div class="body">body content</div>
.menu{
height: 100%;
position: fixed;
background-color: red;
width: 200px;
float: left;
}
.body{
background-color: yellow;
float: right;
width: 60%;
}