I would like to absolute position 2 or 3 images within a div class. I'm kinda new to css and I obviously can only use the img prperty once. I think I am missing an obvious solution but I've tried all kinds of things and am stumped. Thanks for your help.
Sorry, I meant to say that I would like to position each image in a different, absolute position. If I use the img tag for each picture then they will all be positioned in the same place. I hope this makes sense.
I would like to absolute position 2 or 3 images within a div class.
Why use position:absolute at all ? In most cases it's not necessary.
As stated, you can use the img tag all you want. If you want a different placement for each image, create a CLASS for each image placement. Then you'd have <img class="topLeft" src...........> and <img class="bottomRight" src=............> etc.
Classes can be reused many times on the same page, ID's cannot.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Awesome. I did read about that but being new to the power of css I am now getting used to it's uses. Thanks again for taking the time to answer this most basic of questions.