I have a list of images in an html table and need to overlap a small icon on each image. How can we do this using z index and positioning?
You could use position:relative and set right:30px, bottom:30px, that would shift it up and left by 30 pixels.
position:relative
right:30px
bottom:30px
CSS:
.icon{ position:relative; right:30px; bottom:30px; }