这是我的管理面板,我想用 div 将它分成 2 列。左边的 div 是一个菜单,并设置了以下样式:
#menu_left{
position: fixed;
float: left;
width: 300px;
height: 100%;
top: 0;
left: 0;
background: #666;
color: white;
}
右边的是内容,有这样的风格:
#content{
text-wrap: unrestricted;
float:left;
width: 100%;
left: 300px;
}
它不起作用,因为它应该起作用,我希望它包装文本,但它没有。也请告诉我,如果有任何错误的风格设置。
哦,html:
<body>
<div id="menu_left">
<h1>Menu</h1> <hr />
</div>
<div id="content"></div>
</body>