CSSスプライトを使用してメニューを作成したいのですが、それを読み取ることができるブラウザは地球上に1つもありません。私の問題はここにあります。
私のCSSは次のとおりです。
#menuMusica{
  width:340px;
  height:190px;
  background:url('images/menuMusic.png') 0px 0px;
}
#menuMusica a:hover{
  background: url('images/menuMusic.png') 0px -190px;
} 
そして私のHTML:
<div id="menu">
  <table cellspacing=100px>
    <tr>
        <td id="menuMusica" onmouseover="soundGuitar();">
        <a href="javascript:;" onclick="alerter('This site is under construction! Come back soon. You can always follow me on Facebook and Twitter!');"><img  src="images/menuP.png" border=0></a>
      </td>
        <td id="menuPhoto" onmouseover="soundPhoto();">
        <a href="photo/index.html"><img src="images/menuP.png" border=0></a>
      </td>
    </tr>
  </table>
</div>