pwydra
10-08-2007, 06:10 PM
Hey,
I want to get the div "menu2" to be underneath menu and "content" to float to the left of "menu", not "menu2". How can I do this? Thanks!
/* CSS Document */
body
{
font-family:Geneva, Arial, Helvetica, sans-serif;
background-color:#C8C8C8;
color:#3333CC;
}
#frame
{
width:800px;
background-color:#FFFFFF;
margin-left:auto;
margin-right:auto;
}
#header
{
width:auto;
height:70px;
}
#menu
{
width:200px;
height:auto;
margin-top:10px;
float:left;
}
#menu2
{
width:200px;
height:auto;
margin-top:5px;
clear:left;
float:left;
}
#content
{
width:600px;
height:auto;
margin-top:10px;
float:left;
}
#footer
{
width:800px;
height:20px;
clear:left;
}
I want to get the div "menu2" to be underneath menu and "content" to float to the left of "menu", not "menu2". How can I do this? Thanks!
/* CSS Document */
body
{
font-family:Geneva, Arial, Helvetica, sans-serif;
background-color:#C8C8C8;
color:#3333CC;
}
#frame
{
width:800px;
background-color:#FFFFFF;
margin-left:auto;
margin-right:auto;
}
#header
{
width:auto;
height:70px;
}
#menu
{
width:200px;
height:auto;
margin-top:10px;
float:left;
}
#menu2
{
width:200px;
height:auto;
margin-top:5px;
clear:left;
float:left;
}
#content
{
width:600px;
height:auto;
margin-top:10px;
float:left;
}
#footer
{
width:800px;
height:20px;
clear:left;
}