Hier erst mal etwas Code zum erklären.
- Code: Alles auswählen
<div id='spl'>
<a href="#">SPL
<span>
<table>
<tr class="top">
<td class="label"colspan="3" >Spezials</td>
<td class="close"><a class="cl" href="#"><img src="images/close.png"></a></td>
</tr>
....
Und das CSS dazu
- Code: Alles auswählen
#spl a span {display:none;}
#spl a:hover span{
position:absolute; top:200px; left:200px;
color:black;
background:black;
width: 260px;
height: 120px;
display:block;
padding:100px;
}
#spl a {text-decoration:none}
#spl table {
background:#ccc;
border: 1px solid black;
font:normal 14px arial, sans-serif;
color:black;
}
#spl .top {
background:#3366ff;}
Wenn ich mit der Maus über den Link SPL fahre wird mir alles richtig angezeigt aber jetzt möchte ich über den Link in der Tabelle
- Code: Alles auswählen
<td class="close"><a class="cl" href="#"><img src="images/close.png"></a></td>
Hat jemand eine Idee wie ich das lösen kann? Oder eventuell umschreiben das so etwas in der Art möglih ist?

