Here is my HTML
<div id="menuCont">
<div id="SubMenu">
<input type="button" value="button1"/>
<input type="button" value="button1"/>
<input type="button" value="button1"/>
</div>
<div id="Menu">
</div>
</div>
And here is my CSS
#Menu{
height: 550px;
width: 360px;
position: absolute;
top: 2px;
right: 2px;
background-color: gray
}
#menuCont{
top: 0px;
position: absolute
}
I am trying to align elements in a way that.. Menu div should come at the top right position. Please help me on this.But now it is not..
Change position on your #Menu.
then