Click to See Complete Forum and Search --> : please help
venu_1200
06-06-2008, 02:39 AM
i have to images image1, image2 on this i want to overlap image3.
i created table one table for image1, image2. how can i had
i attached my images.
just i want put footprint on two image
plz help me
WebJoel
06-06-2008, 09:05 AM
like this?
<div style="position:relative; width:300px; height:300px; margin:100px; border:3px double gray;">
<img alt="One" src="#" style="position:absolute; left:-65px; top:-35px; width:160px; height:120px; background-color:wheat; border:1px solid blue;" />
<img alt="Two" src="#" style="position:absolute; left:-55px; top:55px; width:100px; height:200px; background-color:teal; border:1px solid blue;" />
<img alt="Three" src="#" style="position:absolute; left:-25px; top:95px; width:160px; height:130px; background-color:brown; border:1px solid blue;" />
</div>