This would fail validation anyway. Your image tag will require a src attributes.
You can either add an empty div and apply your image as a background image or you need an image tag, you can add a transparent placeholder image and define it's dimensions and background image with css.
It's also better to add the dimension to the image so that the browser can render the page even when elements haven't been downloaded yet.
But the real question is why do you want to do that?
If you image is purely decorative you can add it as a background image.
If it is important in the Html, leave it as an image tag with src attribute.
I assume that you want to create a close button widgety thingy.
It might be better for you to add a link element with text content and style it with css and text replacement.
<a href="whatever" class="close-widgety-thingy">close the widget thing</a>
and in css
.close-widgety-thingy {
text-indent: -12345em;
width: 16px;
height: 16px;
background: transparent url(path/to/close/image.png) no-repeat center center;
}
Is it what you want to achieve?
>in the live code as well? Or was that just a copy/paste issue? – bfrohs May 14 '12 at 17:23