hey is there any way to start drawing divs from the same point that means if i add new div and then i add another div they will appear above each over because i want to move them all together depending on the same point
CSS ::
\#num1,#num2{
display : inline
position:relative;
left:50px;
}
HTML ::
<div id='container'>
<div id='num1'></div>
<div id='num2'></div>
</div>
so what should i add to this code so when the browser render this code the 2 divs will be on the same place ?