I'm attempting to align two divs to float right next to each other, as illustrated below:
__________
|.menutop|
| |
----------
|.menu |
| |
----------
How can I achieve this effect? Here's what I've tried so far:
.menutop{
position: absolute;
width:7%;
height:30px;
float:left;
margin-top:97px;
}
.menu{
position:relative;
width:7%;
height:auto;
float:left;
margin-top:107px;
}
However, the above code results in .menu overlapping with .menutop.