I have this page
<body>
<div id="main">
<div id="left_menu">left</div>
</div>
</body>
where
body
{
background-color:#B7B69D;
height:inherit;
}
#main
{
border:outset;
width:1024px;
height:95%;
margin-left:auto;
margin-right:auto;
margin-top:15px;;
margin-bottom:15px;
background-color:#FFF;
}
#site_logo
{
width:140px;
height:120px;
float:left;
margin-top:15px;
margin-left:15px;
margin-right:15px;
}
#left_menu
{
background-color:#90C;
height:640px;
width:180px;
float:left;
margin-top:15px;
margin-left:15px;
}
i div main i add no limit information and i want the div left_menu and the no limit information to be included in index. What is wrong with my code?
Thank you very much