Viennamad: Abstand zwischen CSS-Rollovers

Beitrag lesen

Hallo!

Ich bin am wahnsinnig werden. Ich habe auf Basis der Meyer'schen CSS-Popups ein Menü gemacht. Zwischen den Rollovers bleibt aber immer ein Abstand von ca. 5 Pixeln. Habe zum Testen schon so gut wie überall padding:0px;margin:0px eingetragen, aber die Abstände wollen bleiben.
Unten steht der gekürzte Quelltext, hoffe sehr, daß mir jemand hilft!
Danke
Viennamade

<style type="text/css">
<!--
a img {height: 46px; border-width: 0; }
a#home img { width: 59px; }
a#prods img { width: 76px; }

a#home img {background: url(graphics/menu/home_de.gif) top left no-repeat; }
a#prods img {background: url(graphics/menu/prods_de.gif) top left no-repeat;}

a#home:hover img {background: url(graphics/menu/home_en.gif) top left no-repeat; }
a#prods:hover img {background: url(graphics/menu/hprods_de.gif) top left no-repeat;}
-->
</style>
</head>
<body>
<div style="padding:0px;margin:0px;">
<a id="home" href="home.html"><img src="img/b.gif" alt="Home" /></a>
<a id="prods" href="prods.html"><img src="img/b.gif" alt="Produkte" /></a>
</div>
</body>