salve,

voglio usare la tecnica di image-replacement che sia compatibile con Internet Explorer 5.

Io ho fatto così:

codice:
h1 {
	display: block;
	text-indent: -999em;
	background-image: url(img.gif);
	background-repeat: no-repeat;
	height: 100px;
	width: 150px;
}
codice:
<h1>Testo da Sostituire</h1>
funziona con IE 6 e FF, ma non con IE5.

come posso fare per rendere la tecnica compatibile anche con ie5 ?

grazie !