I am kind of new to css and html coming form Actionscirpt.. I was wonder if there is a better way to do this.
I created an external css with following div.
#myDiv{
position:absolute;
top:200px;
left:200px;
width:200px;
height:200px;
}
and in html I want to use the same div for 3 different things with different value/property.
<div id="myDiv">The top and left needs to be 150px</div>
<div id="myDiv">The top and left needs to be 200px</div>
<div id="myDiv"> The top and left needs to be 300px</div>
Is there a simple way to do it without creating 3 divs in css...