これは私の管理パネルで、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>