I have used background-position: (0)px (0)px; many times in css along with background-image: url(.....); But I wonder if I can use this Css property in IMAGE tag or not. What actually I want is something like this;
<a href="(some line page.html)" target="_blank"><img style="float: left;
background-position: 0px 0px;" src="images/variousthumbnails.jpg" alt="Thumbnail 1"
width="100" height="98" /></a>
"variousthumbnails.jpg" contains 9 images of width 100px and height 98px each. I want to display the first thumbnail which is at "0px 0px" in this image tag, and so on for the others. kindly let me know, if its possible.
I can't use background-image in css.
Thank you.