ポケ鬼!!
2000/02/28(月) 13:33:02
HTMLだけじゃ無理です。スタイルシートを使えばできます。
dummy.gifという同じ大きさの透明の画像を用意して、
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "
http://www.w3.org/TR/html40/strict.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=Shift_JIS">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>サンプル</title>
<style type="text/css">
<!--
img {border: 0;}
a { background: url(aaa.gif);} /* 普段の画像 */
a:hover { background: url(bbb.gif); } /* 置き換わる画像 */
-->
</style>
</head>
<body>
<p><a href="xxx.html"><img src="dummy.gif" width="50" height="20" alt="dummy"></a></p>
</body>
</html>